Skip to content

Commit 27cd302

Browse files
committed
Fix path separators for zip creation and upload in Windows build workflow
1 parent 0ae69a7 commit 27cd302

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_for_windows..yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ jobs:
5151

5252
- name: Create zip of dist folder
5353
run: |
54-
Compress-Archive -Path dist\* -DestinationPath dist\app.zip
54+
Compress-Archive -Path dist\* -DestinationPath dist/app.zip
5555
5656
- name: Upload Release Asset
5757
if: startsWith(github.ref, 'refs/tags/')
5858
uses: softprops/action-gh-release@v1
5959
with:
60-
files: dist\app.zip
60+
files: dist/app.zip
6161
prerelease: ${{ startsWith(github.ref_name, 'b') }}
6262
generate_release_notes: true
6363
env:

0 commit comments

Comments
 (0)