Skip to content

Commit

Permalink
chore: update ci scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Aug 16, 2023
1 parent 800a29f commit 3704177
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,21 @@ jobs:
file: target/release/${{ matrix.artifact_name }}
asset_name: ${{ matrix.asset_name }}
tag: ${{ github.ref }}

- if: matrix.os == 'windows-latest'
name: upload Windows zip
uses: montudor/action-zip@v1
with:
args: zip -qq -r public-windows.zip public

- if: matrix.os == 'macos-latest'
name: upload macOS zip
uses: montudor/action-zip@v1
with:
args: zip -qq -r public-macos.zip public

- if: matrix.os == 'ubuntu-latest'
name: upload Linux zip
uses: montudor/action-zip@v1
with:
args: zip -qq -r public-linux.zip public

0 comments on commit 3704177

Please sign in to comment.