From 11c18b28fc9348dc18fe2514c7da6fd073c98277 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20J=C3=A4gle?= Date: Thu, 20 Aug 2026 14:20:40 +0200 Subject: [PATCH 1/2] chore: align release workflow with codemcp/workflows --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a41bf7a..82bdb16 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -94,7 +94,7 @@ jobs: id: version uses: mathieudutour/github-tag-action@a22cf08638b34d5badda920f9daf6e72c477b07b # v6.2 with: - github_token: ${{ steps.generate_token.outputs.token }} + github_token: ${{ secrets.GITHUB_TOKEN }} default_bump: patch tag_prefix: v release_branches: master,main @@ -119,9 +119,9 @@ jobs: git config --local user.name "GitHub Action" git add package.json packages/*/package.json pnpm-lock.yaml git commit -m "chore: bump version to $NEW_VERSION [skip ci]" || exit 0 - git push --force-with-lease origin main + git push env: - GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Create GitHub Release if: steps.version.outputs.new_tag From 4d04afe79db317f1366fac2896bd657fa6e025f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20J=C3=A4gle?= Date: Thu, 20 Aug 2026 14:59:05 +0200 Subject: [PATCH 2/2] chore: use app token for git push in release workflow --- .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 82bdb16..73115c3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -121,7 +121,7 @@ jobs: git commit -m "chore: bump version to $NEW_VERSION [skip ci]" || exit 0 git push env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} - name: Create GitHub Release if: steps.version.outputs.new_tag