From da5fb7b110b55d03bb95bfff0a112ca98e7ba451 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sat, 8 Mar 2025 09:55:09 -1000 Subject: [PATCH] ;tools: ghrel, ghnightly, ghrun, ghruns to browse those things --- Justfile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Justfile b/Justfile index 9b495cc25..c30b9bb2d 100644 --- a/Justfile +++ b/Justfile @@ -1527,16 +1527,24 @@ _on-master-branch: @ghnightlynotes-push: gh release edit nightly -F doc/ghnightlynotes.md +# Browse the latest github release. +@ghrel: + gh release view -w + +# Browse the github nightly prerelease. +@ghnightly: + gh release view -w nightly + # Get the id of the latest run of the named workflow. @ghrun-id WORKFLOW: gh run list --workflow {{ WORKFLOW }} --json databaseId --jq '.[0].databaseId' # Browse the latest run of the named workflow. -@ghrun-open WORKFLOW: +@ghrun WORKFLOW: gh run view --web $(just ghrun-id {{ WORKFLOW }}) # Browse the latest run of the main binary workflows. -@ghruns-open: +@ghruns: just ghrun-open binaries-linux-x64 just ghrun-open binaries-mac-arm64 just ghrun-open binaries-mac-x64