From 20edf6614564cd76acac8107d746ca1182d6f3c5 Mon Sep 17 00:00:00 2001 From: Derek Schuff Date: Mon, 9 Sep 2024 19:56:11 -0700 Subject: [PATCH] Switch token name in release action (#1446) Rename secret from test to production name --- .github/workflows/tag-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tag-release.yml b/.github/workflows/tag-release.yml index 46560454be..6f33ffec89 100644 --- a/.github/workflows/tag-release.yml +++ b/.github/workflows/tag-release.yml @@ -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 @@ -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,