Skip to content

Commit

Permalink
Update build-windows.yml
Browse files Browse the repository at this point in the history
Build both 32-bit and 64-bit in one workflow
  • Loading branch information
Aemony authored Apr 23, 2024
1 parent e4b57d5 commit 342e569
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:

strategy:
fail-fast: false
matrix:
config: [Release]
platform: [Win32, x64]
#matrix:
# config: [Release]
# platform: [Win32, x64]

steps:
- uses: actions/checkout@v4
Expand All @@ -24,7 +24,9 @@ jobs:
- name: Build the source code
run: |
nuget restore SKIV.sln
msbuild SKIV.sln -p:Configuration="${{ matrix.config }}" -p:Platform="${{ matrix.platform }}" -m
#msbuild SKIV.sln -p:Configuration="${{ matrix.config }}" -p:Platform="${{ matrix.platform }}" -m
msbuild SKIV.sln -p:Configuration="Release" -p:Platform="Win32 -m
msbuild SKIV.sln -p:Configuration="Release" -p:Platform="x64" -m
- name: Prepare environment variables for the artifact name
run: |
Expand Down

0 comments on commit 342e569

Please sign in to comment.