Skip to content

Commit 2335732

Browse files
committed
Fix workflow trigger: add tags to top-level trigger
The workflow was not triggering on tag pushes because the top-level 'on' section only included branch pushes. Tag pushes were ignored entirely, so the release job conditions were never evaluated. This adds 'tags: ["*"]' to allow the workflow to trigger on any tag push.
1 parent 8a1571e commit 2335732

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ name: Pickbox CI/CD
66
on:
77
push:
88
branches: [ "main", "develop" ]
9+
tags: [ "*" ]
910
pull_request:
1011
branches: [ "main" ]
1112

0 commit comments

Comments
 (0)