Skip to content

Commit

Permalink
HOTFIX master.yml: Push version tag to origin (#3985)
Browse files Browse the repository at this point in the history
The previous PR #3983 had an error in the line that pushes the tag
(missing `origin`) see
https://github.com/runtimeverification/haskell-backend/actions/runs/9972668145/job/27556861219
  • Loading branch information
jberthold authored Jul 17, 2024
1 parent 8ee0dad commit c93594b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,5 @@ jobs:
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 "v$(cat package/version)"
git push origin "v$(cat package/version)"
fi

0 comments on commit c93594b

Please sign in to comment.