1 parent 00f8b8b commit 5e1d917Copy full SHA for 5e1d917
1 file changed
.github/workflows/windows.yml
@@ -20,10 +20,11 @@ jobs:
20
cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T ${{ matrix.toolchain }} -A x64 -DCMAKE_BUILD_TYPE:STRING=${{ matrix.config }}
21
cmake --build ./build/x64
22
- name: Publish packaged artifacts
23
+ if: ${{ matrix.config == 'Release' }}
24
uses: actions/upload-artifact@v4
25
with:
- name: prism-windows-x64
26
- path: build/x64/Debug/prism.exe
+ name: prism-windows-x64-${{ matrix.config }}
27
+ path: build/x64/Release/prism.exe
28
- name: Test
29
continue-on-error: true
30
run: |
0 commit comments