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 5916f46 commit 7b7b940Copy full SHA for 7b7b940
.github/workflows/dotnetcore.yml
@@ -21,6 +21,9 @@ jobs:
21
- name: Build Solution
22
run: dotnet build --configuration Release
23
- 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
27
if: success()
28
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
29
0 commit comments