Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jun 19, 2021
1 parent 4a4882a commit 3074cf6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
});
const fs = require('fs');
fs.writeFileSync('${{ github.workspace }}/out.zip', Buffer.from(download.data));
console.log('::debug::${{ toJson(github.event) }}');
- run: unzip -o out.zip
- run: node scripts/publish-preview
env:
CI_PREVIEW_TOKEN: ${{ secrets.CI_PREVIEW_TOKEN }}
PULL_REQUEST: ${{ github.event.workflow_run.outputs.pr }}
GITHUB_SHA: ${{ github.event.workflow_run.outputs.sha }}

PULL_REQUEST: ${{ github.event.workflow_run.pull_requests.0.number }}
GITHUB_SHA: ${{ github.event.workflow_run.head_commit.id }}

0 comments on commit 3074cf6

Please sign in to comment.