Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit d32ebb8

Browse files
committed
Disable password encryption for nuget source
1 parent d374b32 commit d32ebb8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build-cli.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ jobs:
1515
- name: Add NuGet kiota source
1616
# TODO: Add NUGET_USER and NUGET_PASSWORD secrets
1717
# TODO: Add NUGET_URL to env
18+
# NOTE: Password encryption is not supported for the linux platform (Encryption is only supported on Windows platforms.)
1819
run: |
19-
dotnet nuget add source ${{env.NUGET_URL}} -n github -u ${{secrets.NUGET_USER}} -p ${{secrets.NUGET_PASSWORD}}
20+
dotnet nuget add source ${{env.NUGET_URL}} -n github -u ${{secrets.NUGET_USER}} -p ${{secrets.NUGET_PASSWORD}} --store-password-in-clear-text
2021
- uses: actions/cache@v2
2122
with:
2223
path: ~/.nuget/packages

0 commit comments

Comments
 (0)