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.
2 parents 7ef81f0 + 328639d commit c4bbf8bCopy full SHA for c4bbf8b
1 file changed
.github/workflows/ci-cd.yml
@@ -48,11 +48,7 @@ jobs:
48
- name: Publish to GitHub Packages
49
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch'
50
run: |
51
- dotnet nuget add source \
52
- --username ${{ github.actor }} \
53
- --password ${{ secrets.GITHUB_TOKEN }} \
54
- --store-password-in-clear-text \
55
- --name github \
56
- "https://nuget.pkg.github.com/TimeWarpEngineering/index.json"
57
-
58
- dotnet nuget push artifacts/packages/*.nupkg --source "github" --skip-duplicate
+ dotnet nuget push artifacts/packages/*.nupkg \
+ --source "https://nuget.pkg.github.com/TimeWarpEngineering/index.json" \
+ --api-key ${{ secrets.GITHUB_TOKEN }} \
+ --skip-duplicate
0 commit comments