diff options
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index df15291..05cb581 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,12 +5,10 @@ on: push: branches: - - master - - gh-msbuild + - main pull_request: branches: - - master - - gh-msbuild + - main types: [opened, synchronize, reopened] release: types: [created] @@ -28,6 +26,9 @@ jobs: - name: Build solution for release run: msbuild PastDSE.sln -t:rebuild -property:Configuration=Release + - name: Build solution for debug + run: msbuild PastDSE.sln -t:rebuild -property:Configuration=Debug + - name: Upload artifacts uses: actions/upload-artifact@v2 with: |