Skip to content

Commit

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

0 comments on commit b31171d

Please sign in to comment.