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 19d2c31 commit 88df7abCopy full SHA for 88df7ab
.github/workflows/publish-to-nuget-org.yml
@@ -20,11 +20,9 @@ jobs:
20
- name: Restore dependencies
21
run: dotnet restore
22
- name: Build
23
- run: dotnet build --no-restore
+ run: dotnet build -c Release --no-restore
24
- name: Test
25
- run: dotnet test --no-build --verbosity normal
26
- - name: publish
27
- run: dotnet publish -c Release
+ run: dotnet test -c Release --no-build --verbosity normal
28
- name: upload
29
run: dotnet nuget push ./Akade.IndexedSet/bin/Release/Akade.IndexedSet.*.nupkg --source https://api.nuget.org/v3/index.json --api-key "$NUGET_KEY"
30
env:
0 commit comments