Skip to content

Commit 3d0c24c

Browse files
committed
Meta: fix passing PR number (see #2260)
1 parent 80efe41 commit 3d0c24c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/preview-build.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ jobs:
77
build:
88
name: 'build PR preview'
99
runs-on: ubuntu-latest
10-
outputs:
11-
sha: ${{ github.event.pull_request.head.sha }}
12-
pr: ${{ github.event.number }}
1310

1411
steps:
1512
- uses: actions/checkout@v2
@@ -20,6 +17,7 @@ jobs:
2017
use-npm-ci: true
2118
- run: npm run build-only
2219
- run: node scripts/insert_snapshot_warning
20+
- run: echo ${{ github.event.number }} > out/pr.txt
2321
- uses: actions/upload-artifact@v2
2422
with:
2523
name: out

.github/workflows/preview.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ jobs:
4949
with:
5050
script: |
5151
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
5254
- run: node scripts/publish-preview
5355
env:
5456
CI_PREVIEW_TOKEN: ${{ secrets.CI_PREVIEW_TOKEN }}
55-
PULL_REQUEST: ${{ github.event.workflow_run.pull_requests['0'].number }}
5657
GITHUB_HEAD_SHA: ${{ github.event.workflow_run.head_commit.id }}

0 commit comments

Comments
 (0)