Skip to content

Commit 315a658

Browse files
committed
Add --store-password-in-clear-text when adding GitHub nuget source
1 parent 91394b8 commit 315a658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-beta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
run: dotnet nuget push output/nuget/**/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
6161

6262
- name: Add GitHub NuGet Source
63-
run: dotnet nuget add source https://nuget.pkg.github.com/isc30/index.json --name "github" --username isc30 --password ${{ secrets.GITHUB_TOKEN }}
63+
run: dotnet nuget add source https://nuget.pkg.github.com/isc30/index.json --name "github" --username isc30 --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
6464

6565
- name: Push package to GitHub
6666
run: dotnet nuget push output/nuget/**/*.nupkg --source "github" --skip-duplicate

0 commit comments

Comments
 (0)