From e807b2df71c1eec682fbaed5f9d718557ea52702 Mon Sep 17 00:00:00 2001 From: Raminder Singh Date: Wed, 22 Apr 2026 17:34:03 +0530 Subject: [PATCH] fix: GH_APP_CLIENT_ID is a secret not a var --- .github/workflows/release-homebrew-tap.yaml | 2 +- .github/workflows/release-scoop-bucket.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-homebrew-tap.yaml b/.github/workflows/release-homebrew-tap.yaml index 773ea072..b2e30eb6 100644 --- a/.github/workflows/release-homebrew-tap.yaml +++ b/.github/workflows/release-homebrew-tap.yaml @@ -18,7 +18,7 @@ jobs: id: app-token uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 with: - app-id: ${{ vars.GH_APP_ID }} + client-id: ${{ secrets.GH_APP_CLIENT_ID }} private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} owner: supabase repositories: homebrew-tap diff --git a/.github/workflows/release-scoop-bucket.yaml b/.github/workflows/release-scoop-bucket.yaml index 1e667ace..d9284c57 100644 --- a/.github/workflows/release-scoop-bucket.yaml +++ b/.github/workflows/release-scoop-bucket.yaml @@ -18,7 +18,7 @@ jobs: id: app-token uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 with: - app-id: ${{ vars.GH_APP_ID }} + client-id: ${{ secrets.GH_APP_CLIENT_ID }} private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} owner: supabase repositories: scoop-bucket