From e9de9fcd1131dfae4a796d82d41ff24be4d8e6c6 Mon Sep 17 00:00:00 2001 From: Julius Marminge Date: Thu, 19 Mar 2026 20:12:30 -0700 Subject: [PATCH] Use secret release app ID in workflow - Read the GitHub App ID from secrets instead of vars - Keep the private key sourced from secrets --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0a10648c8e..504952e3aa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -312,7 +312,7 @@ jobs: name: Mint release app token uses: actions/create-github-app-token@v2 with: - app-id: ${{ vars.RELEASE_APP_ID }} + app-id: ${{ secrets.RELEASE_APP_ID }} private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }} owner: ${{ github.repository_owner }}