From 4341c24c5f1520f093ff5720c76a55372574fc54 Mon Sep 17 00:00:00 2001 From: Jan Klass Date: Mon, 11 Mar 2024 11:49:40 +0100 Subject: [PATCH] fix(ci): Replace hub with gh cli hub was removed from the runner images; see https://github.com/actions/runner-images/issues/8362 --- update-mirror.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-mirror.sh b/update-mirror.sh index a34dbff56..514cd44ea 100755 --- a/update-mirror.sh +++ b/update-mirror.sh @@ -18,7 +18,7 @@ for fpath in ${dups}*; do ./extract-release-notes.sh "${tag}" "${rnfile}" echo "Creating new releaseā€¦" - echo "hub release create --file \"${rnfile}\" \"$tag\"" + echo "gh release create \"$tag\" --notes-file \"${rnfile}\"" hub release create --file "${rnfile}" "$tag" fi done