Skip to content

Commit 503415b

Browse files
authored
Merge pull request #176 from microsoft/f
f
2 parents 2ad95dc + 00f3bac commit 503415b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/dotnetbuild.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,13 @@ jobs:
4141
- name: Build and Test (on Linux), then build a Windows release
4242
working-directory: ./src
4343
run: |
44-
dotnet build --no-restore --configuration Debug
45-
dotnet test --no-build --configuration Debug --verbosity normal
46-
dotnet build --no-restore --configuration Release --os win
44+
dotnet build --no-restore --configuration Release
45+
dotnet test --no-build --configuration Release --verbosity normal
4746
- name: Build and Publish ${{ matrix.application }} for Windows ZIP deployment
4847
working-directory: ./src
4948
run: |
5049
cd ${{ matrix.application }}
51-
dotnet publish --no-build --no-restore --configuration Release --os win --output publishFolder
50+
dotnet publish --no-restore --configuration Release --os win --output publishFolder
5251
cd publishFolder
5352
zip -r ../zip-deploy-${{ matrix.application }}-win-x64.zip *
5453
- name: Upload ${{ matrix.application }} build artifact

0 commit comments

Comments
 (0)