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 ce37213 commit ba23c04Copy full SHA for ba23c04
.github/workflows/wfnetcorev2.yaml
@@ -16,6 +16,7 @@ env:
16
GITHUB_FEED: https://nuget.pkg.github.com/shaprcode-it/
17
GITHUB_USER: iscifoni
18
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19
+ PERSONAL_TOKEN: ${{ secrets.PACKAGESTOKEN }}
20
# Official NuGet Feed settings
21
NUGET_FEED: https://api.nuget.org/v3/index.json
22
NUGET_KEY: ${{ secrets.NUGET_TOKEN }}
@@ -92,7 +93,7 @@ jobs:
92
93
- name: List sources
94
run: dotnet --info
95
- name: Publish the package to GitHub
- run: dotnet nuget push "*.nupkg" --source "github" --api-key ${{ secrets.GITHUB_TOKEN }}
96
+ run: dotnet nuget push "*.nupkg" --source "github" --api-key $PERSONAL_TOKEN
97
deploy:
98
needs: build
99
if: github.event_name == 'release' && startsWith(github.ref, 'refs/heads/v')
0 commit comments