Skip to content

Commit 9074897

Browse files
tylnexttimeclaude
andcommitted
ci: fire workflow on tag pushes too
The publish job is gated by `if: startsWith(github.ref, 'refs/tags/v')` but the workflow's `on:` block only listed `push: branches: [main]`, so tag pushes (`git push --tags`) didn't fire any workflow at all and the publish gate never had a chance to evaluate. Adding `tags: ['v*']` to the push trigger so the tag-fired job lands on the publish path. Caught after the v0.2.0 tag push silently produced no Actions run. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 35cac41 commit 9074897

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: CI
33
on:
44
push:
55
branches: [main]
6+
tags: ['v*'] # tag pushes (v0.2.0, v0.3.0, …) trigger the publish job below
67
pull_request:
78
branches: [main]
89

0 commit comments

Comments
 (0)