From 0f74bf6606d5a44ce31ca7df28e450233961b25b Mon Sep 17 00:00:00 2001 From: DARKZOUL5 Date: Sat, 7 Mar 2026 19:05:22 +0200 Subject: [PATCH] Add input for release tag in workflow dispatch and update artifact paths --- .github/workflows/release.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c7042fc..fe70ec9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,12 @@ on: #tags: #- "v*.*.*" workflow_dispatch: - + inputs: + tag: + description: "Release tag (e.g., v0.1.0)" + required: true + type: string + jobs: build-windows-package: runs-on: ubuntu-latest @@ -73,7 +78,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: windows-zip - path: $GITHUB_WORKSPACE/yt-playlist-windows-*.zip + path: ${{ github.workspace }}/yt-playlist-windows-*.zip @@ -179,7 +184,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: linux-zip - path: $GITHUB_WORKSPACE/yt-playlist-linux-*.tar.gz + path: ${{ github.workspace }}/yt-playlist-linux-*.tar.gz build-docker-image: runs-on: ubuntu-latest