Skip to content

Commit a6f32d4

Browse files
committed
fix(release): use git push --atomic
That way it won't leave the repo in an inconsistent state. It is supported by GitHub[1]. [1]: https://github.blog/2015-04-30-git-2-4-atomic-pushes-push-to-deploy-and-more/ Signed-off-by: Pablo Barbáchano <[email protected]>
1 parent d4b58d9 commit a6f32d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/release-tag.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ warn "!WARNING! The next step will modify upstream: $UPSTREAM_URL by running:"
6161
echo " git push $UPSTREAM v$version"
6262
echo " git push $UPSTREAM $RELEASE_BRANCH"
6363
get_user_confirmation || die "Cancelling tag push"
64-
git push $UPSTREAM "v$version"
65-
git push $UPSTREAM "$RELEASE_BRANCH"
64+
git push --atomic $UPSTREAM "v$version"
65+
git push --atomic $UPSTREAM "$RELEASE_BRANCH"

0 commit comments

Comments
 (0)