Skip to content

Commit d889b68

Browse files
chore: update nuget package sources
1 parent f43f7db commit d889b68

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/azure-deploy.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff 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

NuGet.config

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,12 @@
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>

0 commit comments

Comments
 (0)