From 4b4e5d73af3908c8d97f2f331bff09f4822173b9 Mon Sep 17 00:00:00 2001 From: Mario Sarcevic Date: Tue, 30 Jan 2024 16:49:13 +0100 Subject: [PATCH] feat: Uncomment push step in tag_release script --- scripts/tag_release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/tag_release.sh b/scripts/tag_release.sh index b82e5051b..d605b05a8 100755 --- a/scripts/tag_release.sh +++ b/scripts/tag_release.sh @@ -68,7 +68,7 @@ if [[ $CONFIRM_PUSH != "" ]]; then fi echo "Pushing branch and tags..." -# git push -# git push --tags +git push +git push --tags echo "Done!"