From e5cd6f5e5f0c3bcf4585a8cb795a87252ca813ac Mon Sep 17 00:00:00 2001 From: dak2 Date: Tue, 24 Mar 2026 09:42:50 +0900 Subject: [PATCH] Fix release workflow not triggered after tag push GITHUB_TOKEN push events do not trigger other workflows by design. Explicitly dispatch release.yml via workflow_dispatch after creating the tag. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/release-tag.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml index ea16d16..cffdcec 100644 --- a/.github/workflows/release-tag.yml +++ b/.github/workflows/release-tag.yml @@ -7,6 +7,7 @@ on: permissions: contents: write + actions: write jobs: create-tag: @@ -36,7 +37,7 @@ jobs: - name: Trigger release workflow env: - TAG: ${{ steps.version.outputs.tag }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - gh workflow run release.yml --ref "$TAG" + TAG: ${{ steps.version.outputs.tag }} + run: gh workflow run release.yml --ref "$TAG" +