Skip to content
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.

Commit

Permalink
ups
Browse files Browse the repository at this point in the history
  • Loading branch information
Skwll authored Dec 10, 2023
1 parent 19fe734 commit e83b7b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-boiii.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,23 +39,23 @@ jobs:
run: msbuild /m /v:minimal /p:Configuration=${{matrix.configuration}} /p:Platform=x64 build/boiii.sln

- name: Upload ${{matrix.configuration}} symbols
if: matrix.configuration == 'Release' && github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop')
if: matrix.configuration == 'Release'
uses: actions/upload-artifact@v3.1.3
with:
name: ${{matrix.configuration}} Symbols
path: |
build/bin/x64/${{matrix.configuration}}/boiii.pdb
- name: Upload ${{matrix.configuration}} binary
if: matrix.configuration == 'Release' && github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop')
if: matrix.configuration == 'Release'
uses: actions/upload-artifact@v3.1.3
with:
name: ${{matrix.configuration}} Binary
path: |
build/bin/x64/${{matrix.configuration}}/boiii.exe
- name: Upload ${{matrix.configuration}} data artifacts
if: matrix.configuration == 'Release' && github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop')
if: matrix.configuration == 'Release'
uses: actions/upload-artifact@v3.1.3
with:
name: ${{matrix.configuration}} data artifacts
Expand Down

0 comments on commit e83b7b6

Please sign in to comment.