Skip to content

Commit c93594b

Browse files
authored
HOTFIX master.yml: Push version tag to origin (#3985)
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
1 parent 8ee0dad commit c93594b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,5 @@ jobs:
7979
if git add --update && git commit --no-edit --allow-empty --message "Set Version: $(cat package/version)"; then
8080
git push origin release
8181
git tag "v$(cat package/version)" origin/master
82-
git push "v$(cat package/version)"
82+
git push origin "v$(cat package/version)"
8383
fi

0 commit comments

Comments
 (0)