Skip to content

Commit

Permalink
upload build result
Browse files Browse the repository at this point in the history
  • Loading branch information
Inori committed Jun 26, 2023
1 parent d2fcd09 commit 91ea058
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,17 @@ jobs:
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: |
msbuild /m /p:Configuration=Debug ${{env.SOLUTION_FILE_PATH}}
msbuild /m /p:Configuration=Release ${{env.SOLUTION_FILE_PATH}}
msbuild /m /p:Configuration=Debug /t:Rebuild ${{env.SOLUTION_FILE_PATH}}
msbuild /m /p:Configuration=Release /t:Rebuild ${{env.SOLUTION_FILE_PATH}}
- name: Upload build files
id: upload-artifacts
uses: actions/upload-artifact@v3
with:
name: gpcs4-${{ env.GITHUB_SHA }}
path: |
x64
!x64/**/*.pdb
!x64/**/*.lib
if-no-files-found: error

0 comments on commit 91ea058

Please sign in to comment.