From 936d5914573adf3b8bbf0c4a316ea974a10485c4 Mon Sep 17 00:00:00 2001 From: Etienne Stalmans Date: Sat, 4 Oct 2025 08:44:51 +0200 Subject: [PATCH] chore(ci): set gh token The GITHUB_TOKEN environment variable isn't automatically set. Set it so that it is available for the release process --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7dd11874..b4c18d1e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -98,6 +98,7 @@ jobs: - name: Release env: NPM_CONFIG_PROVENANCE: true + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} RELEASE_GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} # used for tags run: | npm run release-stable -- --versionSpecifier "${{ github.event.inputs.version_specifier }}" @@ -263,6 +264,7 @@ jobs: npm run release-canary env: NPM_CONFIG_PROVENANCE: true + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} RELEASE_GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} # used for tags notify-stable-failure: name: Notify Slack for Stable failure