Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
goenning committed Sep 12, 2024
1 parent b31171d commit 0c8c10d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ jobs:
- name: Create tar.gz archive (Linux/macOS)
if: runner.os != 'Windows'
run: |
tar -czvf ${{ matrix.asset_name }} ${{ matrix.target }}/release/${{ matrix.bin_name }}
tar -czvf ${{ matrix.asset_name }} target/${{ matrix.target }}/release/${{ matrix.bin_name }}
- name: Create zip archive (Windows)
if: runner.os == 'Windows'
run: |
Compress-Archive -Path ${{ matrix.target }}/release/${{ matrix.bin_name }} -DestinationPath ${{ matrix.asset_name }}
Compress-Archive -Path target/${{ matrix.target }}/release/${{ matrix.bin_name }} -DestinationPath ${{ matrix.asset_name }}
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
Expand Down

0 comments on commit 0c8c10d

Please sign in to comment.