mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
try: fix compression on windows
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
name: New Release
|
name: New Release (v2)
|
||||||
run-name: Release v${{ github.event.inputs.tag }}
|
run-name: Release v${{ github.event.inputs.tag }}
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
@@ -257,10 +257,16 @@ jobs:
|
|||||||
name: client
|
name: client
|
||||||
path: client
|
path: client
|
||||||
|
|
||||||
- name: Compress client
|
- name: Compress client (Unix)
|
||||||
|
if: runner.os != 'Windows'
|
||||||
run: |
|
run: |
|
||||||
zip -r client.zip client
|
zip -r client.zip client
|
||||||
|
|
||||||
|
- name: Compress client (Windows)
|
||||||
|
if: runner.os == 'Windows'
|
||||||
|
run: |
|
||||||
|
Compress-Archive -Path client -DestinationPath client.zip -Force
|
||||||
|
|
||||||
- name: Download wheel artifact
|
- name: Download wheel artifact
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
|||||||
Reference in New Issue
Block a user