Skip to content

Commit

Permalink
Switch token name in release action (#1446)
Browse files Browse the repository at this point in the history
Rename secret from test to production name
  • Loading branch information
dschuff authored Sep 10, 2024
1 parent a72a42a commit 20edf66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
id: create-tag
uses: actions/github-script@v7
with:
github-token: ${{ secrets.TEST_TOKEN }}
github-token: ${{ secrets.EMSCRIPTEN_BOT_TOKEN }}
# A commit with the message of the form 'Release X.Y.Z' is expected
# to have been created by create_release.py and update the latest
# release in emscripten-releases-tags.json
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Dispatch emscripten workflow
uses: actions/github-script@v7
with:
github-token: ${{ secrets.TEST_TOKEN }}
github-token: ${{ secrets.EMSCRIPTEN_BOT_TOKEN }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
Expand Down

0 comments on commit 20edf66

Please sign in to comment.