Skip to content

Commit 17189dc

Browse files
committed
Fix CI to use Release configuration consistently
1 parent aa7a7e0 commit 17189dc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
run: dotnet restore src/Endpointer.slnx
2323

2424
- name: Build
25-
run: dotnet build src/Endpointer.slnx --no-restore
25+
run: dotnet build src/Endpointer.slnx --no-restore -c Release
2626

2727
- name: Test
28-
run: dotnet test --solution src/Endpointer.slnx --no-build
28+
run: dotnet test --solution src/Endpointer.slnx --no-build -c Release
2929

3030
- name: Pack
31-
run: dotnet pack src/Endpointer/Endpointer.csproj --no-build -o ./artifacts
31+
run: dotnet pack src/Endpointer/Endpointer.csproj --no-build -c Release -o ./artifacts

0 commit comments

Comments
 (0)