We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4843c4d commit c4d52f8Copy full SHA for c4d52f8
.github/workflows/dotnet.yml
@@ -23,11 +23,11 @@ jobs:
23
- name: Restore dependencies
24
run: dotnet restore
25
- name: Build
26
- run: dotnet build --no-restore
+ run: dotnet build --no-restore --configuration Release
27
- name: Test
28
- run: dotnet test --no-build --verbosity normal
+ run: dotnet test --no-build --verbosity normal --configuration Release
29
- name: Pack
30
- run: dotnet pack --no-build -o ./nupkg
+ run: dotnet pack --no-build --configuration Release -o ./nupkg
31
- name: Push to NuGet
32
env:
33
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
0 commit comments