Fix workflow secret reference

This commit is contained in:
Joe 2021-07-08 12:40:37 -05:00
parent e8bb54b0d7
commit 3cec58da9b
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: | - run: |
curl -X POST -H "Authorization: token ${GH_WORKFLOW_PAT}" -H "Content-Type: application/json" \ curl -X POST -H "Authorization: token ${{ secrets.GH_WORKFLOW_PAT }}" -H "Content-Type: application/json" \
https://api.github.com/repos/infogulch/index/dispatches \ https://api.github.com/repos/infogulch/index/dispatches \
-d '{"event_type": "notebooks_push"}' -d '{"event_type": "notebooks_push"}'