From 8fddc1e528059f2d138f7e761c13633b8f59ee2a Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 30 Nov 2022 19:08:28 -0500 Subject: [PATCH] dev: tools/release: update for new "github" remote name --- tools/release | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/release b/tools/release index a34421683..0b897021d 100755 --- a/tools/release +++ b/tools/release @@ -145,8 +145,9 @@ prep() { } # Push the current branch to the CI branches that generate platform binaries. +# Assumes the github remote is named "github". bin() { - run git push -f origin HEAD:binaries + run git push -f github HEAD:binaries } if declare -f "$1" > /dev/null; then "$@"; else usage; fi