From e48e5d914b4c2ab927e597c9730b91e58cce7dcd Mon Sep 17 00:00:00 2001 From: steinuil Date: Wed, 1 Jan 2025 23:20:39 +0100 Subject: [PATCH] fix zipping for windows --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 59d78b5..17b67bb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,3 +1,5 @@ +name: Build for release + on: # release: # types: @@ -46,7 +48,7 @@ jobs: - name: Create archive (windows) if: ${{ startsWith(matrix.build, 'windows') }} - run: Compress-Archive -Recurse -Destination kameloso-${{ matrix.target }}.zip -Path kameloso + run: Compress-Archive -DestinationPath kameloso-${{ matrix.target }}.zip -Path kameloso - name: Upload archive uses: actions/upload-artifact@v4