Skip to content

Commit f624ab6

Browse files
authored
Updated gh action (release.yml)
1 parent 90e64ed commit f624ab6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/release.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@ jobs:
1414
uses: actions/checkout@v2
1515

1616
- name: Set up MSVC environment
17-
uses: microsoft/setup-msbuild@v1
18-
19-
- name: Configure CMake
20-
run: cmake -A Win32 -B build -S .
17+
uses: microsoft/setup-msbuild@v2
2118

2219
- name: Build
2320
run: |
21+
cmake -A Win32 -B build -S . -D CMAKE_BUILD_TYPE=Debug
2422
cmake --build build --config Debug
23+
cmake -A Win32 -B build -S . -D CMAKE_BUILD_TYPE=Release
2524
cmake --build build --config Release
2625
2726
- name: Archive Debug Binaries

0 commit comments

Comments
 (0)