From d935b215227e4d5943d3eb1188cf2208821e9dae Mon Sep 17 00:00:00 2001 From: DARKZOUL5 Date: Sat, 7 Mar 2026 18:56:11 +0200 Subject: [PATCH] Update artifact paths for Windows and Linux uploads in release workflow --- .github/workflows/release.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0797b4d..c7042fc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,7 +73,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: windows-zip - path: ${{ env.ZIP_PATH }} + path: $GITHUB_WORKSPACE/yt-playlist-windows-*.zip @@ -174,13 +174,12 @@ jobs: cd "$GITHUB_WORKSPACE/dist/linux" ZIP_NAME="yt-playlist-linux-${TAG}.tar.gz" tar -czf "$GITHUB_WORKSPACE/$ZIP_NAME" * - echo "ZIP_PATH=$GITHUB_WORKSPACE/$ZIP_NAME" >> $GITHUB_ENV - name: Upload Linux artifact uses: actions/upload-artifact@v4 with: name: linux-zip - path: ${{ env.ZIP_PATH }} + path: $GITHUB_WORKSPACE/yt-playlist-linux-*.tar.gz build-docker-image: runs-on: ubuntu-latest @@ -211,7 +210,7 @@ jobs: - name: Extract linux artifact run: | set -e - tar -xzf linux-zip/yt-playlist-linux-${TAG}.tar.gz -C . + tar -xzf linux-zip/yt-playlist-linux-*.tar.gz -C . - name: Build Docker image with release tag run: docker build ./ -t ${{ env.REGISTRY_URL }}/${{ github.actor }}/${{ env.IMAGE_NAME }}:${{ env.TAG }}