File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -32,14 +32,12 @@ jobs:
3232 with :
3333 dotnet-version : ${{ env.DOTNET_VERSION }}
3434
35- - name : Setup Telerik Nuget Feeds
36- uses : telerik/actions/setup-telerik-nuget-feeds@master
37- with :
38- ak-vault-token : ${{ secrets.AK_VAULT_TOKEN_PACKAGE_READER }}
39-
4035 - name : Add Local Package Source
4136 run : dotnet nuget add source ${{ github.workspace }}/blazor-progress-rag-demo/packages --name LocalPackages
4237
38+ - name : Add Telerik Package Source
39+ run : dotnet nuget update source "telerik" --source "https://nuget.telerik.com/v3/index.json" --username api-key --password ${{ secrets.TELERIK_API_KEY }}
40+
4341 - name : Build with dotnet
4442 run : dotnet build --configuration Release
4543
Original file line number Diff line number Diff line change 22<configuration >
33 <packageSources >
44 <add key =" LocalPackages" value =" blazor-progress-rag-demo/packages" />
5+ <add key =" telerik" value =" https://nuget.pkg.github.com/telerik/index.json" />
56 </packageSources >
7+ <packageSourceCredentials >
8+ <telerik >
9+ <add key =" Username" value =" api-key" />
10+ <add key =" ClearTextPassword" value =" <YOUR_API_KEY>" />
11+ </telerik >
12+ </packageSourceCredentials >
613</configuration >
You can’t perform that action at this time.
0 commit comments