Skip to content

Commit 79bc667

Browse files
committed
Update github build
1 parent 6814af1 commit 79bc667

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/build-clang.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,7 @@ jobs:
2727
run: msbuild Src/C3.sln "/t:restore"
2828

2929
- name: Build MSVC
30-
run: msbuild Src/C3.sln "/p:Platform=${{ matrix.platform }}" "/p:Configuration="${{ matrix.configuration }}"
31-
30+
run: msbuild Src/C3.sln /p:Platform=${{ matrix.platform }} /p:Configuration="${{ matrix.configuration }}
31+
32+
- name: Build WebService
33+
run: dotnet publish -p:Platform=any -c ${{ matrix.configuration }} Src/WebController/Backend -o Bin/WebController

.github/workflows/build-msvc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
run: msbuild Src/C3.sln "/t:restore"
2828

2929
- name: Build MSVC
30-
run: msbuild Src/C3.sln "/p:Platform=${{ matrix.platform }}" "/p:Configuration="${{ matrix.configuration }}"
31-
30+
run: msbuild Src/C3.sln /p:Platform=${{ matrix.platform }} /p:Configuration="${{ matrix.configuration }}
31+
3232
- name: Build WebService
33-
run: dotnet publish -p:Platform=any -c ${{ matrix.configuration }} "Src/WebController/Backend" -o "Bin/WebController"
33+
run: dotnet publish -p:Platform=any -c ${{ matrix.configuration }} Src/WebController/Backend -o Bin/WebController
3434

0 commit comments

Comments
 (0)