Skip to content

Commit 28b26aa

Browse files
authored
Fix tag format for publish workflow
prepend semver blob with "v" consistent with past tags like "v1.17.1"
1 parent 8bafaac commit 28b26aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Publish
44
on:
55
push:
66
tags:
7-
- '[0-9]+.[0-9]+.[0-9]+' # any semver tag, e.g. 1.2.3
7+
- 'v[0-9]+.[0-9]+.[0-9]+' # any semver tag, e.g. 1.2.3
88

99
env:
1010
# link to the changelog with a format code for the version
@@ -63,4 +63,4 @@ jobs:
6363
caches
6464
jdks
6565
notifications
66-
wrapper
66+
wrapper

0 commit comments

Comments
 (0)