From 5c56ec7497cfb2898f8c2da0b85e23cca5dbd271 Mon Sep 17 00:00:00 2001 From: Corey Woodfield Date: Tue, 12 Nov 2024 14:35:41 -0700 Subject: [PATCH] Update release action to use gh instead of hub hub has been removed from runner images. See https://github.com/actions/runner-images/issues/8362 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a2e34ed..1494380 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -76,4 +76,4 @@ jobs: set -x tag="${GITHUB_REF#refs/tags/}" targets=($(printf -- "-a %s " */target/**/*.jar)) - hub release create "${targets[@]}" -m "Release $tag" $tag + gh release create "$tag" -n "Release $tag" "${targets[@]}"