We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e10edd9 commit d1ee684Copy full SHA for d1ee684
1 file changed
.github/workflows/cibuildwheel.yml
@@ -2,9 +2,11 @@ name: Build
2
3
on:
4
push:
5
- branches: [main]
6
- pull_request:
7
- branches: ["*"]
+ tags:
+ # ytf did they invent their own syntax that's almost regex?
+ # ** matches 'zero or more of any character'
8
+ - 'release-v[0-9]+.[0-9]+.[0-9]+**'
9
+ - 'prerelease-v[0-9]+.[0-9]+.[0-9]+**'
10
workflow_dispatch: # allows you to trigger manually
11
12
jobs:
0 commit comments