Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSmith33 committed May 26, 2024
1 parent 77dec8c commit 03ff977
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ jobs:
7z a -mx9 vox-${{matrix.PLATFORM}}.zip ${{matrix.EXE}}
- uses: actions/upload-artifact@v4
with:
path: ./bin/vox-${{matrix.PLATFORM}}.zip
name: artifact-${{matrix.PLATFORM}}
path: bin/
build-debug:
name: Build CLI debug
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -98,7 +99,8 @@ jobs:
7z a -mx9 vox-${{matrix.PLATFORM}}-dbg.zip ${{matrix.EXE}} ${{matrix.DBG_FILE}}
- uses: actions/upload-artifact@v4
with:
path: ./bin/vox-${{matrix.PLATFORM}}-dbg.zip
name: artifact-vox-${{matrix.PLATFORM}}-dbg
path: bin/
build-shared:
name: Build shared
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -130,7 +132,8 @@ jobs:
7z a -mx9 libvox-${{matrix.PLATFORM}}.zip ${{matrix.DLL}} ${{matrix.LIB}}
- uses: actions/upload-artifact@v4
with:
path: ./bin/libvox-${{matrix.PLATFORM}}.zip
name: artifact-libvox-${{matrix.PLATFORM}}
path: bin/
build-shared-debug:
name: Build shared debug
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -163,7 +166,8 @@ jobs:
7z a -mx9 libvox-${{matrix.PLATFORM}}-dbg.zip ${{matrix.DLL}} ${{matrix.LIB}} ${{matrix.DBG_FILE}}
- uses: actions/upload-artifact@v4
with:
path: ./bin/libvox-${{matrix.PLATFORM}}-dbg.zip
name: artifact-libvox-${{matrix.PLATFORM}}-dbg
path: bin/
upload:
name: Upload build
if: github.event_name != 'pull_request'
Expand Down

0 comments on commit 03ff977

Please sign in to comment.