From a0b33d4758dcb2d89c5deb4eadca4ab766b603bb Mon Sep 17 00:00:00 2001 From: Araxeus <78568641+Araxeus@users.noreply.github.com> Date: Fri, 6 May 2022 02:02:35 +0300 Subject: [PATCH] v1.0.3.3 --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c803f32..c906331 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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'