try: fix compression on windows

This commit is contained in:
cwilvx
2025-08-28 19:26:54 +03:00
parent ebc740a5a5
commit e57d4c6596
+8 -2
View File
@@ -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: