ci: modify package path for pushing to nuget

This commit is contained in:
Andrew Welker
2023-02-06 16:18:15 -07:00
parent 8c0893ac7a
commit b1e3b68834

View File

@@ -84,6 +84,6 @@ jobs:
- name: Add nuget.org API Key
run: nuget setApiKey ${{ secrets.NUGET_API_KEY }}
- name: Publish nuget package to Github registry
run: nuget push "./package/*.nupkg" -Source github
run: nuget push ".\package\PepperDashCore.${{ steps.setVersion.outputs.version }}.nupkg" -Source github
- name: Publish nuget package to nuget.org
run: nuget push "./package/*.nupkg" -Source https://api.nuget.org/v3/index.json
run: nuget push ".\package\PepperDashCore.${{ steps.setVersion.outputs.version }}.nupkg" -Source https://api.nuget.org/v3/index.json