Skip to content

Commit 7b7b940

Browse files
committed
publish symbols after publishing the nuget package.
1 parent 5916f46 commit 7b7b940

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
- name: Build Solution
2222
run: dotnet build --configuration Release
2323
- name: Nuget Publish
24+
if: success()
25+
run: dotnet nuget push --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NugetApiKey}} /home/runner/work/OsmApiClient/OsmApiClient/src/bin/Release/*.nupkg
26+
- name: Nuget Publish Symbols
2427
if: success()
2528
run: dotnet nuget push --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NugetApiKey}} /home/runner/work/OsmApiClient/OsmApiClient/src/bin/Release/*.snupkg
2629

0 commit comments

Comments
 (0)