Skip to content

Commit 2aed5db

Browse files
userFRMclaude
andcommitted
ci: trigger workflow on tag pushes so publish job runs
The publish job requires `startsWith(github.ref, 'refs/tags/v')` but the workflow only triggered on `push: branches: [master]`, which excluded tag pushes entirely. Added `tags: ['v*']` to the push trigger. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 709cf3b commit 2aed5db

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: [master]
6+
tags: ['v*']
67
pull_request:
78
branches: [master]
89

0 commit comments

Comments
 (0)