Skip to content

Commit

Permalink
Use a release- prefix for the tag on master (#3986)
Browse files Browse the repository at this point in the history
The `v<VERSION>` tags are already used by the `release` branch, so use
`release-<VERSION>` for `master` to avoid conflicts
  • Loading branch information
jberthold authored Jul 17, 2024
1 parent c93594b commit 5fdd57a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ jobs:
./package/version.sh sub
if git add --update && git commit --no-edit --allow-empty --message "Set Version: $(cat package/version)"; then
git push origin release
git tag "v$(cat package/version)" origin/master
git push origin "v$(cat package/version)"
git tag "release-$(cat package/version)" origin/master
git push origin "release-$(cat package/version)"
fi

0 comments on commit 5fdd57a

Please sign in to comment.