Skip to content

Commit

Permalink
v1.0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Araxeus committed May 5, 2022
1 parent 76c6fee commit a0b33d4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,12 @@ jobs:
steps:
- name: Get the version
id: version
shell: sh
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}

- name: Get filename
id: filename
shell: sh
run: echo ::set-output name=FILENAME::"lsi_${{ matrix.filename }}_${{ steps.version.outputs.VERSION }}.zip"

- uses: actions/checkout@v3
Expand All @@ -46,7 +48,7 @@ jobs:
- name: Zip Windows
if: matrix.os == 'windows-latest'
shell: pwsh
run: "Compress-Archive target/release/lsi.exe ${{ steps.filename.outputs.FILENAME }} -Force"
run: Compress-Archive target/release/lsi.exe ${{ steps.filename.outputs.FILENAME }} -Force

- name: Zip Linux / MacOs
if: matrix.os != 'windows-latest'
Expand Down

0 comments on commit a0b33d4

Please sign in to comment.