From d6083712617dcff247b8396e2cb5d8f01b4ad03d Mon Sep 17 00:00:00 2001 From: Jose Diaz Rohena Date: Sun, 26 Mar 2023 19:23:55 +0200 Subject: [PATCH] Fix linux build artifact name Somewhere along the line, the variable used for naming the .zip created for linux builds in CI got messed up. Let's fix it, even if we're about to disable creation of these in the next commit. --- .github/workflows/cmake_ctest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake_ctest.yml b/.github/workflows/cmake_ctest.yml index 57b46e33..1973d3e1 100644 --- a/.github/workflows/cmake_ctest.yml +++ b/.github/workflows/cmake_ctest.yml @@ -196,7 +196,7 @@ jobs: - name: Zip if: ${{ matrix.name == 'Linux' }} working-directory: ${{ env.ARTIFACTS_PATH }} - run: 7z a -tzip ${{ env.OUTPUT_FILEN }}.zip . + run: 7z a -tzip ${{ env.OUTPUT_FILENAME }}.zip . - name: Generate Installer (Windows) # and Sign with EV cert on Azure (Windows) if: ${{ matrix.name == 'Windows' }} @@ -220,8 +220,8 @@ jobs: if: ${{ matrix.name == 'Linux' }} uses: actions/upload-artifact@v3 with: - name: ${{ env.OUTPUT_FILEN }}.zip - path: '${{ env.ARTIFACTS_PATH }}/${{ env.OUTPUT_FILEN }}.zip' + name: ${{ env.OUTPUT_FILENAME }}.zip + path: '${{ env.ARTIFACTS_PATH }}/${{ env.OUTPUT_FILENAME }}.zip' - name: Upload DMG (MacOS) if: ${{ matrix.name == 'macOS' }}