File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 7
7
build :
8
8
name : ' build PR preview'
9
9
runs-on : ubuntu-latest
10
- outputs :
11
- sha : ${{ github.event.pull_request.head.sha }}
12
- pr : ${{ github.event.number }}
13
10
14
11
steps :
15
12
- uses : actions/checkout@v2
20
17
use-npm-ci : true
21
18
- run : npm run build-only
22
19
- run : node scripts/insert_snapshot_warning
20
+ - run : echo ${{ github.event.number }} > out/pr.txt
23
21
- uses : actions/upload-artifact@v2
24
22
with :
25
23
name : out
Original file line number Diff line number Diff line change 49
49
with :
50
50
script : |
51
51
console.log(${{ toJson(github.event) }});
52
+ - run : echo "PULL_REQUEST=$(cat out/pr.txt" >> $GITHUB_ENV
53
+ - run : rm out/pr.txt && echo $PULL_REQUEST
52
54
- run : node scripts/publish-preview
53
55
env :
54
56
CI_PREVIEW_TOKEN : ${{ secrets.CI_PREVIEW_TOKEN }}
55
- PULL_REQUEST : ${{ github.event.workflow_run.pull_requests['0'].number }}
56
57
GITHUB_HEAD_SHA : ${{ github.event.workflow_run.head_commit.id }}
You can’t perform that action at this time.
0 commit comments