Skip to content

Commit

Permalink
Change zip name
Browse files Browse the repository at this point in the history
  • Loading branch information
ShayBox committed Dec 1, 2022
1 parent 061f42d commit 8a1fefb
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 @@ -58,11 +58,11 @@ jobs:

- name: Create Zip Archive (Windows)
if: ${{ matrix.runner == 'windows-latest' }}
run: bash -c '7z a ${{ matrix.target }}.zip ./target/${{ matrix.target }}/release/{${{ matrix.zip }}}'
run: bash -c '7z a ${{ matrix.name }}.zip ./target/${{ matrix.target }}/release/{${{ matrix.zip }}}'

- name: Create Zip Archive (Other)
if: ${{ matrix.runner != 'windows-latest' }}
run: zip -j ${{ matrix.target }}.zip target/${{ matrix.target }}/release/{${{ matrix.zip }}}
run: zip -j ${{ matrix.name }}.zip target/${{ matrix.target }}/release/{${{ matrix.zip }}}

- name: Upload Zip Archive
run: gh release upload ${{ github.ref_name }} ${{ matrix.target }}.zip --clobber
run: gh release upload ${{ github.ref_name }} ${{ matrix.name }}.zip --clobber

0 comments on commit 8a1fefb

Please sign in to comment.