Skip to content

Commit

Permalink
v1.0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Araxeus committed May 5, 2022
1 parent 022b97b commit ff3e364
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,14 @@ jobs:
run: cargo build --release --verbose

- name: Zip
shell: bash
run: zip -r -FS lsi_${{ matrix.os }}.zip . -i "target/release/lsi*(.exe))"
if: matrix.os == 'windows-latest'
shell: pwsh
run: Compress-Archive "target/release/lsi.exe" lsi_${{ matrix.os }}.zip -Force

- name: Zip
if: matrix.os != 'windows-latest'
shell: sh
run: zip -r -FS lsi_${{ matrix.os }}.zip "target/release/lsi"

- name: Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit ff3e364

Please sign in to comment.