Skip to content

Commit

Permalink
GitHub CI: Upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
erysdren committed Dec 13, 2023
1 parent 0920184 commit 25671d9
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,33 @@ jobs:
- name: Build
run: |
cmake --build cmake-build --config Release
- name: Upload win64 artifact
uses: actions/upload-artifact@v3
if: ${{ runner.os == 'Windows' && matrix.use-asan == 'NO' }}
with:
name: rotten-${{ github.sha }}-win64
path: |
cmake-build/rotten.exe
cmake-build/rotten_sw.exe
misc/wad/rotten.wad
- name: Upload Linux artifact
uses: actions/upload-artifact@v3
if: ${{ runner.os == 'Linux' && matrix.use-asan == 'NO' }}
with:
name: rotten-${{ github.sha }}-Linux
path: |
cmake-build/rotten
cmake-build/rotten_sw
misc/wad/rotten.wad
- name: Upload macOS artifact
uses: actions/upload-artifact@v3
if: ${{ runner.os == 'macOS' && matrix.use-asan == 'NO' }}
with:
name: rotten-${{ github.sha }}-macOS
path: |
cmake-build/rotten
cmake-build/rotten_sw
misc/wad/rotten.wad

0 comments on commit 25671d9

Please sign in to comment.