From 46be74abd03b64246f06baae0e9c03717ac69fcb Mon Sep 17 00:00:00 2001 From: Jonas Dellinger Date: Fri, 3 Nov 2023 23:52:20 +0100 Subject: [PATCH] fix build: switch from hub to gh cli --- .github/workflows/cicd.yaml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index aae5fbb82..10a9c62a9 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -61,17 +61,16 @@ jobs: zip -j SpotifyAPI.Web.Auth-net6.0.zip SpotifyAPI.Web.Auth/bin/Release/net6.0/* zip -j SpotifyAPI.Web.Auth-net7.0.zip SpotifyAPI.Web.Auth/bin/Release/net7.0/* - hub release edit \ - -a "SpotifyAPI.Web-netstandard2.0.zip" \ - -a "SpotifyAPI.Web-netstandard2.1.zip" \ - -a "SpotifyAPI.Web-net5.0.zip" \ - -a "SpotifyAPI.Web-net6.0.zip" \ - -a "SpotifyAPI.Web-net7.0.zip" \ - -a "SpotifyAPI.Web.Auth-netstandard2.0.zip" \ - -a "SpotifyAPI.Web.Auth-netstandard2.1.zip" \ - -a "SpotifyAPI.Web.Auth-net5.0.zip" \ - -a "SpotifyAPI.Web.Auth-net6.0.zip" \ - -a "SpotifyAPI.Web.Auth-net7.0.zip" \ - -m "" "$RELEASE_VERSION" + gh release upload "$RELEASE_VERSION" \ + "SpotifyAPI.Web-netstandard2.0.zip" \ + "SpotifyAPI.Web-netstandard2.1.zip" \ + "SpotifyAPI.Web-net5.0.zip" \ + "SpotifyAPI.Web-net6.0.zip" \ + "SpotifyAPI.Web-net7.0.zip" \ + "SpotifyAPI.Web.Auth-netstandard2.0.zip" \ + "SpotifyAPI.Web.Auth-netstandard2.1.zip" \ + "SpotifyAPI.Web.Auth-net5.0.zip" \ + "SpotifyAPI.Web.Auth-net6.0.zip" \ + "SpotifyAPI.Web.Auth-net7.0.zip" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}