Skip to content

Commit

Permalink
Fix workflow - build only debug version at every push
Browse files Browse the repository at this point in the history
* Also add pdb to artifacts
  • Loading branch information
Smertig committed Nov 13, 2020
1 parent 10ee832 commit cd5159b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Build
strategy:
matrix:
build_type: [ Debug, Release, RelWithDebInfo ]
build_type: [ Debug ]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -39,6 +39,7 @@ jobs:
run: |
cmake -E make_directory _dist
cmake -E copy bin/among-us-replayer.exe _dist/among-us-replayer.exe
cmake -E copy bin/among-us-replayer.pdb _dist/among-us-replayer.pdb
cmake -E copy_directory "${{github.workspace}}/res" _dist/res
- name: Upload artifacts
Expand Down

0 comments on commit cd5159b

Please sign in to comment.