We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32b4b62 commit 9909960Copy full SHA for 9909960
.github/workflows/build.yml
@@ -74,6 +74,7 @@ jobs:
74
- name: Build with PyInstaller
75
run: pyinstaller -y yt_audio_workbench.spec
76
- name: Pack artifact (Windows)
77
+ if: runner.os == 'Windows' # Or: if: startsWith(matrix.os, 'windows')
78
shell: pwsh
79
run: |
80
$ErrorActionPreference = 'Stop'
@@ -116,7 +117,7 @@ jobs:
116
117
uses: actions/upload-artifact@v4
118
with:
119
name: YT-Audio-Workbench-${{ matrix.os }}
- path: ${{ env.ZIP_NAME }}
120
+ path: ${{ env.ZIP_PATH }}
121
122
release:
123
name: Release on tag
0 commit comments