Skip to content

Commit 29b7324

Browse files
committed
Update secret name
1 parent cd8396c commit 29b7324

10 files changed

+21
-29
lines changed

.github/workflows/main_build-ajax.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ on:
1212
- '.github/workflows/main_build-ajax.yml'
1313

1414
env:
15-
TELERIK_USERNAME: "api-key" # Variable name used in the nuget.config file
16-
TELERIK_PASSWORD: ${{secrets.TELERIK_NUGET_KEY}} # Variable name used in the nuget.config file
17-
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE}} # Used when compiling the project
1815
CSPROJ_PATH: "src/Ajax/MySite.sln"
1916
NUGETCONFIG_PATH: "src/NuGet.Config"
2017

@@ -38,6 +35,11 @@ jobs:
3835
# Important: We are using nuget CLI (not dotnet CLI) See https://docs.microsoft.com/en-us/nuget/reference/nuget-exe-cli-reference
3936
- name: NuGet.exe Restore
4037
run: nuget restore ${{env.CSPROJ_PATH}} -ConfigFile ${{env.NUGETCONFIG_PATH}}
38+
env:
39+
TELERIK_USERNAME: "api-key" # Variable name used in the nuget.config file
40+
TELERIK_PASSWORD: ${{secrets.TELERIK_NUGET_KEY}} # Variable name used in the nuget.config file
4141

4242
- name: Build the AJAX application
4343
run: msbuild ${{env.CSPROJ_PATH}} /t:Restore /p:Configuration=Release /p:RuntimeIdentifier=any
44+
env:
45+
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}

.github/workflows/main_build-angular.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,3 @@ jobs:
3131
- name: Build
3232
working-directory: src/Kendo/angular_demo
3333
run: npm run build --prod
34-
35-
# - uses: actions/upload-artifact@v4
36-
# with:
37-
# name: "Kendo UI Test"
38-
# path: 'src/Kendo/angular_demo/dist'
39-
# if-no-files-found: error
40-
# retention-days: 1

.github/workflows/main_build-aspnetcore.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ env:
2222
CONTAINER_REPOSITORY: "lancemccarthy/myaspnetcoreapp"
2323
WORKING_DIRECTORY: "src/AspNetCore/MyAspNetCoreApp"
2424
DOTNET_VERSION: "9.0.x"
25-
BASE_IMAGE_DOTNET_BUILD: "lancemccarthy/skia-aspnet:9.0" # Custom base image with Skia dependencies pre-installed
25+
# Custom base image with Skia dependencies pre-installed, only used by the .NET SDK container build.
26+
BASE_IMAGE_DOTNET_BUILD: "lancemccarthy/skia-aspnet:9.0"
2627

2728
jobs:
2829
##############################################
@@ -56,12 +57,6 @@ jobs:
5657
export-secrets-to-outputs: true
5758
export-secrets-to-environment: false
5859

59-
# Not needed since Q1 2025
60-
# - name: Create Kendo license file in the appropriate project directory
61-
# run: |
62-
# cd ${{env.WORKING_DIRECTORY}}/wwwroot/js
63-
# echo ${{steps.akeyless.outputs.KENDO_LICENSE_FILE}} > kendo-ui-license.js
64-
6560
- name: Set up QEMU
6661
uses: docker/setup-qemu-action@v3
6762

@@ -106,7 +101,6 @@ jobs:
106101
build_tag: ${{steps.build.outputs.build_tag}}
107102
env:
108103
target_arch: "x64"
109-
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}
110104
steps:
111105
- name: Checkout
112106
uses: actions/checkout@v4
@@ -139,6 +133,8 @@ jobs:
139133
140134
# Job output the arch-specific container name so we can publish a multi-arch image later
141135
echo "build_tag=$TAG" >> $GITHUB_OUTPUT
136+
env:
137+
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}
142138

143139
build_arm64:
144140
runs-on: ubuntu-22.04
@@ -149,7 +145,6 @@ jobs:
149145
build_tag: ${{steps.build.outputs.build_tag}}
150146
env:
151147
target_arch: "arm64"
152-
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}
153148
steps:
154149
- name: Checkout
155150
uses: actions/checkout@v4
@@ -182,6 +177,8 @@ jobs:
182177
183178
# Job output the arch-specific container name so we can publish a multi-arch image later
184179
echo "build_tag=$TAG" >> $GITHUB_OUTPUT
180+
env:
181+
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}
185182

186183
publish_combined_manifest:
187184
runs-on: ubuntu-22.04

.github/workflows/main_build-blazor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ jobs:
3535
runs-on: windows-2022
3636
env:
3737
RID: win-x64
38-
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}
3938
steps:
4039
- name: Checkout
4140
uses: actions/checkout@v4
@@ -57,16 +56,16 @@ jobs:
5756

5857
- name: Build Test Project
5958
run: dotnet build ${{env.TEST_PROJ_PATH}} -c ${{env.CONFIGURATION}} -r ${{env.RID}} --no-restore
60-
61-
- name: Run Tests
62-
run: dotnet test ${{env.TEST_PROJ_PATH}} -r ${{env.RID}}
59+
env:
60+
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}
6361

6462

6563
######################################################
6664
############ [Option B] DOCKER FILE BUILD ############
6765
######################################################
6866
# Publishes to ghcr.io (GitHub)
6967
build_container_with_dockerfile:
68+
name: "Dockerfile container build"
7069
runs-on: ubuntu-22.04
7170
permissions:
7271
contents: read
@@ -119,6 +118,7 @@ jobs:
119118
##########################################################
120119
# Publishes to registry.hub.docker.com (Docker hub)
121120
build_container_with_dotnet:
121+
name: ".NET SDK Container build"
122122
runs-on: ubuntu-22.04
123123
permissions:
124124
id-token: write

.github/workflows/main_build-console.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ jobs:
4343
- name: Build project
4444
run: dotnet build ${{env.CSPROJ_PATH}} --configuration ${{env.BUILD_CONFIGURATION}} --runtime ${{matrix.os}}-${{matrix.config}} --no-self-contained --no-restore
4545
env:
46-
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE}}
46+
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}

.github/workflows/main_build-maui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- '.github/workflows/main_build-maui.yml'
1313

1414
env:
15-
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE}}
15+
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}
1616
PROJECT_PATH: "src/MAUI/MauiDemo.csproj"
1717
NUGETCONFIG_PATH: "src/NuGet.Config"
1818
DOTNET_VERSION: "9.0.x"

.github/workflows/main_build-maui_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ defaults:
1313
shell: pwsh
1414

1515
env:
16-
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE}}
16+
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}
1717
CSPROJ_PATH: "src/MAUI/MauiDemo.csproj"
1818
NUGETCONFIG_PATH: "src/NuGet.Config"
1919
BUILD_CONFIG: Release

.github/workflows/main_build-winforms.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
env:
1515
TELERIK_USERNAME: "api-key" # Variable name used in the nuget.config file
1616
TELERIK_PASSWORD: ${{secrets.TELERIK_NUGET_KEY}} # Variable name used in the nuget.config file
17-
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE}} # Used when compiling the project
17+
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}} # Used when compiling the project
1818
CSPROJ_PATH: "src/WinForms/MyWinFormsApp/MyWinFormsApp.csproj"
1919
NUGETCONFIG_PATH: "src/NuGet.Config"
2020

.github/workflows/main_build-winui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
env:
1414
TELERIK_USERNAME: "api-key" # Used by the nuget.config file
1515
TELERIK_PASSWORD: ${{secrets.TELERIK_NUGET_KEY}} # Used by the nuget.config file
16-
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE}} # Used when compiling the project
16+
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}} # Used when compiling the project
1717
SOLUTION_NAME: "src/WinUI/MyDemo.sln"
1818
NUGETCONFIG_PATH: "src/NuGet.Config"
1919
PFX_FILENAME: "MyCodeSignCert.pfx"

.github/workflows/main_build-wpf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
env:
1515
TELERIK_USERNAME: "api-key" # Variable name used in the nuget.config file
1616
TELERIK_PASSWORD: ${{secrets.TELERIK_NUGET_KEY}} # Variable name used in the nuget.config file
17-
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE}} # Used when compiling the project
17+
TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}} # Used when compiling the project
1818
CSPROJ_PATH: "src/Wpf/MyWpfApp/MyWpfApp.csproj"
1919
NUGETCONFIG_PATH: "src/NuGet.Config"
2020

0 commit comments

Comments
 (0)