1
0
mirror of https://github.com/darkzoul5/YoutubePlaylistSync.git synced 2026-07-04 21:04:01 +03:00

Add input for release tag in workflow dispatch and update artifact paths

This commit is contained in:
2026-03-07 19:05:22 +02:00
parent d935b21522
commit 0f74bf6606
+7 -2
View File
@@ -5,6 +5,11 @@ on:
#tags: #tags:
#- "v*.*.*" #- "v*.*.*"
workflow_dispatch: workflow_dispatch:
inputs:
tag:
description: "Release tag (e.g., v0.1.0)"
required: true
type: string
jobs: jobs:
build-windows-package: build-windows-package:
@@ -73,7 +78,7 @@ jobs:
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: windows-zip 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 uses: actions/upload-artifact@v4
with: with:
name: linux-zip name: linux-zip
path: $GITHUB_WORKSPACE/yt-playlist-linux-*.tar.gz path: ${{ github.workspace }}/yt-playlist-linux-*.tar.gz
build-docker-image: build-docker-image:
runs-on: ubuntu-latest runs-on: ubuntu-latest