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 4c8cec9 commit 7e3de41Copy full SHA for 7e3de41
.github/workflows/publish-artifacts-examples-tests.yml
@@ -130,13 +130,10 @@ jobs:
130
- name: Setup GitHub Packages source
131
run: |
132
dotnet nuget add source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json \
133
- --name github \
134
- --username ${{ github.actor }} \
135
- --password ${{ secrets.GITHUB_TOKEN }}
136
- --store-password-in-clear-text
+ --name github
137
138
- name: Publish packages to GitHub Packages
139
140
for package in ./packages/*.nupkg; do
141
dotnet nuget push $package --source github --api-key ${{ secrets.GITHUB_TOKEN }}
142
- done
+ done
0 commit comments