From 8d6988571da5f3a8a561ac7e354c243765a42620 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 5 Dec 2025 00:58:13 -1000 Subject: [PATCH] ;tools:just:ghrel-bin-upload -> ghrel-upload, fix --- Justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Justfile b/Justfile index 9e6a3331d..b7b5b6af6 100644 --- a/Justfile +++ b/Justfile @@ -1075,12 +1075,12 @@ ghbin-download: doc/ghrelnotes `cat .version` | gh release edit `cat .version` -F- # After ghbin-download: upload the downloaded binaries to the current release branch's github release. -ghrel-bin-upload: +ghrel-upload: #!/usr/bin/env bash set -euo pipefail just _on-release-branch VER=$(just ver) - @read -p "Warning! uploading binaries to release $VER, are you sure ? Enter to proceed: " + read -p "Warning! uploading binaries to release $VER, are you sure ? Enter to proceed: " gh release upload --clobber "$VER" tmp/hledger-linux-x64.tar.gz gh release upload --clobber "$VER" tmp/hledger-mac-arm64.tar.gz gh release upload --clobber "$VER" tmp/hledger-mac-x64.tar.gz