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.
2 parents d81bd29 + c2b76f5 commit ab38d42Copy full SHA for ab38d42
.github/workflows/ci.yaml
@@ -4,6 +4,8 @@ on:
4
merge_group:
5
pull_request:
6
push:
7
+ tags:
8
+ - '*'
9
branches-ignore:
10
# Ignore pushes to merge queues.
11
# We only want to test the merge commit (`merge_group` event), the hashes
@@ -193,7 +195,7 @@ jobs:
193
195
create-github-release:
194
196
needs: ["publish-docs"]
197
# Create a release only on tags creation
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
198
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
199
permissions:
200
# We need write permissions on contents to create GitHub releases and on
201
# discussions to create the release announcement in the discussion forums
0 commit comments