From 2604f18a1ba02698a0bbc919740ac03ee37533a2 Mon Sep 17 00:00:00 2001 From: Martin Marosi Date: Thu, 2 Jul 2026 15:52:38 +0200 Subject: [PATCH] fix(ci): switch release checkout from SSH key to PAT The BOT_SSH_KEY deploy key was revoked, breaking the release workflow. Use the existing RELEASE_TOKEN PAT for checkout instead, matching the approach used by other projects. Co-Authored-By: Claude Opus 4.6 --- .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 751109e1f..36cf2366b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - ssh-key: ${{ secrets.BOT_SSH_KEY }} + token: ${{ secrets.RELEASE_TOKEN }} - name: Setup Node.js uses: actions/setup-node@v4