From f71d052b6294b659fbeea2e2646fcc42960e411d Mon Sep 17 00:00:00 2001 From: Xevion Date: Tue, 1 Oct 2024 18:38:48 -0500 Subject: [PATCH] Fix archive path for GitHub Release --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b21c86a..2f2b673 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -93,13 +93,13 @@ jobs: RELEASE_VERSION=v${{ env.PACKAGE_VERSION }} ARCHIVE="spotify-player-quickauth-$RELEASE_VERSION-${{ matrix.target }}.tar.gz" tar czf "$ARCHIVE" ./spotify-player-quickauth - echo "ASSET_PATH=$ASSET_PATH" >> $GITHUB_ENV + echo "ARCHIVE_PATH=$(pwd)/$ARCHIVE" >> $GITHUB_ENV - name: Release uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: - files: ${{ env.ASSET_PATH }} + files: ${{ env.ARCHIVE_PATH }} generate_release_notes: true fail_on_unmatched_files: true