From 2b41130047edc90f3e2a5f68e58b1ace777d188f Mon Sep 17 00:00:00 2001 From: sebthom Date: Mon, 9 Oct 2023 13:57:15 +0200 Subject: [PATCH] build: replace hub command with gh --- .github/workflows/build.yml | 49 +++++++++++++------------------------ 1 file changed, 17 insertions(+), 32 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d377897..50e93f3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -508,43 +508,28 @@ jobs: - name: "Delete previous '${{ env.RELEASE_NAME }}' release" if: env.RELEASE_NAME == 'snapshot' - run: | - set -eu - - creds="${{ secrets.GH_API_TOKEN }}:x-oauth-basic" - api_base_url="$GITHUB_API_URL/repos/$GITHUB_REPOSITORY" - - # delete github release - release_id=$(curl -fsL $creds https://api.github.com/repos/vegardit/copycat/releases | jq -r '.[] | select(.name == "${{ env.RELEASE_NAME }}") | .id') - if [[ -n $release_id ]]; then - echo "Deleting release [$api_base_url/releases/$release_id]..." - curl -u $creds -fsSL -X DELETE "$api_base_url/releases/$release_id" - fi - - # delete git tag - tag_url="$api_base_url/git/refs/tags/${{ env.RELEASE_NAME }}" - if curl -u $creds -fsLo /dev/null --head "$tag_url"; then - echo "Deleting tag [$tag_url]..." - curl -u $creds -fsSL -u $creds -X DELETE "$tag_url" - fi + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # https://cli.github.com/manual/gh_release_delete + run: gh release delete "$RELEASE_NAME" --yes --cleanup-tag || true - name: "Create '${{ env.RELEASE_NAME }}' Release" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # https://cli.github.com/manual/gh_release_create run: | - set -eu - - # https://hub.github.com/hub-release.1.html - hub release create \ - --message "${{ env.RELEASE_NAME }}" "${{ env.RELEASE_NAME }}" \ - --attach "maven-build-artifacts/copycat-fat.jar#copycat-${{ env.RELEASE_NAME }}-fat.jar" \ - --attach "maven-build-artifacts/bash/bashcompletion.sh#copycat-${{ env.RELEASE_NAME }}-bashcompletion.sh" \ - --attach "artifact/copycat-linux-amd64#copycat-${{ env.RELEASE_NAME }}-linux-amd64" \ - --attach "artifact/copycat-linux-arm64#copycat-${{ env.RELEASE_NAME }}-linux-arm64" \ - --attach "artifact/copycat-darwin-amd64#copycat-${{ env.RELEASE_NAME }}-darwin-amd64" \ - --attach "artifact/copycat-windows-amd64.exe#copycat-${{ env.RELEASE_NAME }}-windows-amd64.exe" \ - --attach "artifact/copycat-windows-amd64-uncompressed.exe#copycat-${{ env.RELEASE_NAME }}-windows-amd64-uncompressed.exe" \ - --prerelease + gh release create "$RELEASE_NAME" \ + --latest \ + --prerelease \ + --target "${{ github.sha }}" \ + --notes "$RELEASE_NAME" \ + maven-build-artifacts/copycat-fat.jar#copycat-${{ env.RELEASE_NAME }}-fat.jar \ + maven-build-artifacts/bash/bashcompletion.sh#copycat-${{ env.RELEASE_NAME }}-bashcompletion.sh \ + artifact/copycat-linux-amd64#copycat-${{ env.RELEASE_NAME }}-linux-amd64 \ + artifact/copycat-linux-arm64#copycat-${{ env.RELEASE_NAME }}-linux-arm64 \ + artifact/copycat-darwin-amd64#copycat-${{ env.RELEASE_NAME }}-darwin-amd64 \ + artifact/copycat-windows-amd64.exe#copycat-${{ env.RELEASE_NAME }}-windows-amd64.exe \ + artifact/copycat-windows-amd64-uncompressed.exe#copycat-${{ env.RELEASE_NAME }}-windows-amd64-uncompressed.exe - name: "Delete intermediate build artifacts" uses: geekyeggo/delete-artifact@v2 # https://github.com/GeekyEggo/delete-artifact/