From 432946a4029cfe9c64ef57c264fa6bde0602f868 Mon Sep 17 00:00:00 2001 From: mateofuentespombo Date: Sun, 4 Jan 2026 18:31:11 +0100 Subject: [PATCH 1/2] Use TOKENBuild PAT to trigger build workflows on tag push --- .github/workflows/auto-release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index 6850775..b403e6b 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -258,8 +258,11 @@ jobs: with: ref: main fetch-depth: 0 + token: ${{ secrets.TOKENBuild }} - name: '🏷️ Create and push tag' + env: + GH_TOKEN: ${{ secrets.TOKENBuild }} run: | TAG="${{ steps.version.outputs.version_tag }}" From d90db43da0c79dcc7da8eb389e6d55082ac65a5c Mon Sep 17 00:00:00 2001 From: mateofuentespombo Date: Sun, 4 Jan 2026 18:37:49 +0100 Subject: [PATCH 2/2] Use TOKENBuild for release creation to trigger build workflows --- .github/workflows/auto-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index b403e6b..251a4ec 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -276,7 +276,7 @@ jobs: - name: '🚀 Create GitHub Release' env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_TOKEN: ${{ secrets.TOKENBuild }} PR_BODY: ${{ github.event.pull_request.body }} run: | TAG="${{ steps.version.outputs.version_tag }}"