Skip to content

Commit

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

0 comments on commit 404d8f2

Please sign in to comment.