From 4051db87217ce61da0cbb43606bb77d714222dea Mon Sep 17 00:00:00 2001 From: Samuel K Date: Mon, 18 May 2026 13:27:41 -0500 Subject: [PATCH] fix(ci): use github.token for stable release creation in promote workflow The GitHub App token gets 403 when creating releases via both gh CLI and softprops/action-gh-release. The workflow-level permissions already grant contents:write to github.token, so use that for the create stable release step (matching the existing trigger full rebuild step). --- .github/workflows/promote-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/promote-release.yml b/.github/workflows/promote-release.yml index b02efd0d6..30be2e05a 100644 --- a/.github/workflows/promote-release.yml +++ b/.github/workflows/promote-release.yml @@ -76,7 +76,7 @@ jobs: - name: create stable release env: - GH_TOKEN: ${{ steps.app-token.outputs.token }} + GH_TOKEN: ${{ github.token }} STABLE_TAG: ${{ steps.version.outputs.stable_tag }} COMMIT_SHA: ${{ steps.version.outputs.commit_sha }} run: |