Skip to content

Commit b1b4494

Browse files
committed
Fix git tag name resource in CI pipeline
Prior to this commit, the git tag used for the GitHub release generation was missing the "v" prefix.
1 parent 6dc2b05 commit b1b4494

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/scripts/generate-changelog.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ java -jar /github-changelog-generator.jar \
99
${version} generated-changelog/changelog.md
1010

1111
echo ${version} > generated-changelog/version
12-
echo ${version} > generated-changelog/tag
12+
echo v${version} > generated-changelog/tag

0 commit comments

Comments
 (0)