Skip to content

Commit

Permalink
ci: ๐Ÿ”„ fix archive creation
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-labs committed Jan 4, 2024
1 parent 3af67de commit 0af413f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,11 @@ jobs:
shell: bash
run: |
cd target/${{ matrix.platform.target }}/release
if [[ "${{ matrix.platform.os }}" == "windows-latest" ]]; then
7z a ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }}
7z a ../../../${{ matrix.platform.archive }} ${{ matrix.platform.bin }}
else
tar czvf ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }}
tar czvf ../../../${{ matrix.platform.archive }} ${{ matrix.platform.bin }}
fi
cd -
Expand Down

0 comments on commit 0af413f

Please sign in to comment.