From 2464aca7c34bfdf5fe7cb5a0c47012f3da2f9119 Mon Sep 17 00:00:00 2001 From: gnikit Date: Mon, 3 Jun 2024 23:56:18 +0100 Subject: [PATCH] ci: give unique names to make-installer upload artefacts --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 25151e8994..c8f450c399 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -261,13 +261,13 @@ jobs: run: | cd ./ci makensis fpm-installer.nsi - move fpm-installer.exe fpm-installer-${{ env.VERSION }}.exe + move fpm-installer.exe fpm-installer-${{ env.VERSION }}-gcc-${{ matrix.gcc_v }}.exe - name: Upload artifact uses: actions/upload-artifact@v4 with: - name: fpm-installer - path: ci/fpm-installer-${{ env.VERSION }}.exe + name: fpm-installer-gcc-${{ matrix.gcc_v }} + path: ci/fpm-installer-${{ env.VERSION }}-gcc-${{ matrix.gcc_v }}.exe upload-artifacts: if: ${{ github.event_name == 'release' && contains(github.ref, 'v') || github.event_name == 'push' }}