From f8cc0a8e9dc3da1cf25a53d513888b4189ee6cc1 Mon Sep 17 00:00:00 2001 From: DARKZOUL5 Date: Sat, 7 Mar 2026 20:54:12 +0200 Subject: [PATCH] Fix artifact download paths in release workflow --- .github/workflows/release.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eee8582..be1a1b1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -243,17 +243,22 @@ jobs: IMAGE_NAME: youtubeplaylistdownloader steps: - uses: actions/download-artifact@v4 - with: + with: name: windows-zip + path: windows-zip - uses: actions/download-artifact@v4 - with: + with: name: linux-zip + path: linux-zip - uses: actions/download-artifact@v4 - with: + with: name: docker-image + path: docker-image - uses: actions/download-artifact@v4 - with: + with: name: docker-image-latest + path: docker-image-latest + - name: Get version from tag id: version shell: bash