Skip to content

Commit

Permalink
Meta: add debug info (see #2260)
Browse files Browse the repository at this point in the history
This is pushed directly to the default branch, because workflow_run scripts are ran from the default branch
  • Loading branch information
ljharb committed Jun 25, 2021
1 parent b4e31f6 commit 80efe41
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ jobs:
const fs = require('fs');
fs.writeFileSync('${{ github.workspace }}/out.zip', Buffer.from(download.data));
- run: unzip -o out.zip -d out
- name: 'debug info'
uses: actions/github-script@v3.1.0
with:
script: |
console.log(${{ toJson(github.event) }});
- run: node scripts/publish-preview
env:
CI_PREVIEW_TOKEN: ${{ secrets.CI_PREVIEW_TOKEN }}
Expand Down

0 comments on commit 80efe41

Please sign in to comment.