From 88feaf748b71fa898b2a003087d952199f1bbd14 Mon Sep 17 00:00:00 2001 From: Samuel K Date: Mon, 18 May 2026 14:37:59 -0500 Subject: [PATCH] fix(ci): pass app token via GITHUB_TOKEN env for softprops release step The token: input on softprops/action-gh-release@v3 may not work correctly with the GitHub App token. Instead pass the app token by overriding the GITHUB_TOKEN environment variable that softprops reads by default, which is the same pattern that works in release.yml for asset uploads. --- .github/workflows/promote-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/promote-release.yml b/.github/workflows/promote-release.yml index 4dff4d04a..003d918e1 100644 --- a/.github/workflows/promote-release.yml +++ b/.github/workflows/promote-release.yml @@ -77,8 +77,9 @@ jobs: - name: create stable release uses: softprops/action-gh-release@v3 + env: + GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} with: - token: ${{ steps.app-token.outputs.token }} tag_name: ${{ steps.version.outputs.stable_tag }} target_commitish: ${{ steps.version.outputs.commit_sha }} name: ${{ steps.version.outputs.stable_tag }}