Skip to content

Commit 7e3de41

Browse files
authored
Update publish-artifacts-examples-tests.yml
remove password Signed-off-by: Henrique Graca <999396+hjgraca@users.noreply.github.com>
1 parent 4c8cec9 commit 7e3de41

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/publish-artifacts-examples-tests.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,10 @@ jobs:
130130
- name: Setup GitHub Packages source
131131
run: |
132132
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
133+
--name github
137134
138135
- name: Publish packages to GitHub Packages
139136
run: |
140137
for package in ./packages/*.nupkg; do
141138
dotnet nuget push $package --source github --api-key ${{ secrets.GITHUB_TOKEN }}
142-
done
139+
done

0 commit comments

Comments
 (0)