Skip to content

Commit af7262f

Browse files
committed
ci: don't include 'v' in version tag
1 parent d903e39 commit af7262f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
tags:
6-
- 'v*.*.*' # Triggers the workflow when pushing a tag that matches the pattern, e.g., v1.0.0
6+
- '*.*.*' # Triggers the workflow when pushing a tag that matches the pattern, e.g., 1.0.0
77

88
permissions:
99
contents: write
@@ -34,7 +34,7 @@ jobs:
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3535
with:
3636
tag_name: ${{ github.ref_name }}
37-
release_name: Release ${{ github.ref_name }}
37+
release_name: ${{ github.ref_name }}
3838
draft: false
3939
prerelease: false
4040

0 commit comments

Comments
 (0)