We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cc0156 commit 32788eaCopy full SHA for 32788ea
.github/workflows/ci.yml
@@ -6,7 +6,9 @@ permissions:
6
on:
7
push:
8
branches: [ main ]
9
- tags: [ 'v*', '*']
+ tags:
10
+ # Run on all tags except for release tags (e.g. v1.2.3)
11
+ - '!v[0-9]+.[0-9]+.[0-9]+'
12
pull_request:
13
14
.github/workflows/release.yml
@@ -5,7 +5,7 @@ on:
5
# This workflow will run only when you push a tag that starts with 'v'
# For example: v1.2.1, v1.3.0, etc.
tags:
- - 'v*.*.*'
+ - 'v[0-9]+.[0-9]+.[0-9]+'
permissions:
contents: write
0 commit comments