Skip to content

Commit

Permalink
GitHub actions: Fix conflicting artifact names.
Browse files Browse the repository at this point in the history
  • Loading branch information
ashaduri committed Apr 23, 2024
1 parent ac90991 commit 5746ab5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/cmake-tier1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,16 @@ jobs:
run: cpack -G NSIS

- name: Upload artifacts
if: ${{ matrix.msystem == 'MINGW64' }}
uses: actions/upload-artifact@v4
with:
name: Windows 32-Bit Packages
path: ${{github.workspace}}/build/gsmartcontrol-*-win*.*

- name: Upload artifacts
if: ${{ matrix.msystem == 'MINGW32' }}
uses: actions/upload-artifact@v4
with:
name: Windows Packages
name: Windows 64-Bit Packages
path: ${{github.workspace}}/build/gsmartcontrol-*-win*.*

0 comments on commit 5746ab5

Please sign in to comment.