diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a1da7576..f578373e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: New Release +name: New Release (v2) run-name: Release v${{ github.event.inputs.tag }} on: workflow_dispatch: @@ -257,10 +257,16 @@ jobs: name: client path: client - - name: Compress client + - name: Compress client (Unix) + if: runner.os != 'Windows' run: | 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 uses: actions/download-artifact@v4 with: