Skip to content

Commit 4c976aa

Browse files
committed
Add tag triggers to all workflows
Enable all CI/CD workflows to run on version tags (v*) in addition to branches and PRs. This allows tag pushes to automatically trigger the full build, test, and release pipeline. Modified workflows: - wheels.yml: Added 'tags: [v*]' trigger - wheels-docker.yml: Added 'tags: [v*]' trigger - wheels-arm64.yml: Added 'tags: [v*]' trigger - wstest.yml: Added 'tags: [v*]' trigger - main.yml: Added 'tags: [v*]' trigger This fixes the issue where pushing tag v25.10.2 did not trigger any workflows, requiring manual workflow dispatch instead.
1 parent 92c5568 commit 4c976aa

File tree

5 files changed

+10
-0
lines changed

5 files changed

+10
-0
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: main
33
on:
44
push:
55
branches: [master]
6+
tags:
7+
- 'v*'
68
pull_request:
79
branches: [master]
810
workflow_dispatch:

.github/workflows/wheels-arm64.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
# Build wheels on feature branches and PRs (test only)
55
push:
66
branches: ["**"]
7+
tags:
8+
- 'v*'
79
pull_request:
810
branches: [master]
911

.github/workflows/wheels-docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
# Build wheels on feature branches and PRs (test only)
55
push:
66
branches: ["**"]
7+
tags:
8+
- 'v*'
79
pull_request:
810
branches: [master]
911

.github/workflows/wheels.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
# Build wheels on feature branches and PRs (test only)
55
push:
66
branches: ["**"]
7+
tags:
8+
- 'v*'
79
pull_request:
810
branches: [master]
911

.github/workflows/wstest.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: wstest
33
on:
44
push:
55
branches: [master]
6+
tags:
7+
- 'v*'
68
pull_request:
79
branches: [master]
810
workflow_dispatch:

0 commit comments

Comments
 (0)