From f09aa9bec094a1fc8473b6f30e9c00bc4f7f9d5c Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Thu, 2 Dec 2021 19:40:40 -0800 Subject: [PATCH] Fix promote-release #947 Fix promote-release #947 --- bin/promote-release.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/promote-release.sh b/bin/promote-release.sh index b4828dd68..e79a06aaf 100755 --- a/bin/promote-release.sh +++ b/bin/promote-release.sh @@ -6,6 +6,10 @@ VERSION=`bin/buildinfo.py long` # Must have a V prefix to trigger github git tag "v${VERSION}" -git push root "v${VERSION}" # push the tag + +# Commented out per https://github.com/meshtastic/Meshtastic-device/issues/947 +#git push root "v${VERSION}" # push the tag + +git push origin "v${VERSION}" # push the tag echo "Tag ${VERSION} pushed to github, github actions should now be building the draft release. If it seems good, click to publish it"