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 d903e39 commit af7262fCopy full SHA for af7262f
.github/workflows/release.yml
@@ -3,7 +3,7 @@ name: Release
3
on:
4
push:
5
tags:
6
- - 'v*.*.*' # Triggers the workflow when pushing a tag that matches the pattern, e.g., v1.0.0
+ - '*.*.*' # Triggers the workflow when pushing a tag that matches the pattern, e.g., 1.0.0
7
8
permissions:
9
contents: write
@@ -34,7 +34,7 @@ jobs:
34
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35
with:
36
tag_name: ${{ github.ref_name }}
37
- release_name: Release ${{ github.ref_name }}
+ release_name: ${{ github.ref_name }}
38
draft: false
39
prerelease: false
40
0 commit comments