From 8ced31b07e883e58a18cab6eb8759618ee7854f2 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 4166abc6db..15f73b4a47 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' }}