Skip to content

Commit 5fdd57a

Browse files
authored
Use a release- prefix for the tag on master (#3986)
The `v<VERSION>` tags are already used by the `release` branch, so use `release-<VERSION>` for `master` to avoid conflicts
1 parent c93594b commit 5fdd57a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@ jobs:
7878
./package/version.sh sub
7979
if git add --update && git commit --no-edit --allow-empty --message "Set Version: $(cat package/version)"; then
8080
git push origin release
81-
git tag "v$(cat package/version)" origin/master
82-
git push origin "v$(cat package/version)"
81+
git tag "release-$(cat package/version)" origin/master
82+
git push origin "release-$(cat package/version)"
8383
fi

0 commit comments

Comments
 (0)