From 343bed0d2a5c6d3bb02db44ce88d8e8288d2aede Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 13 Dec 2025 04:32:47 +0000 Subject: [PATCH] fix: Use PAT for tag creation to trigger publish workflow When using GITHUB_TOKEN to push tags, GitHub Actions doesn't trigger subsequent workflows as a security measure. Using a PAT instead allows the tag push to trigger the publish workflow. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cf36fff..a879c2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,6 +44,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 + token: ${{ secrets.RELEASE_PAT }} - name: Extract version from package.json id: get_version