Update workflows

This commit is contained in:
Lance McCarthy
2026-05-21 17:34:49 -04:00
parent 82e0ef17e9
commit 9c892f47a3
2 changed files with 18 additions and 70 deletions
+10 -68
View File
@@ -1,7 +1,4 @@
# This workflow has three examples (one for IIS, two using containers) # For docker publish example, see: main_docker.yml
# [Option A] Typical IIS build & publish
# [Option B] DOCKER FILE BUILD - publishes the image to ghcr.io (GitHub container registry)
# [Option C] .NET SDK CONTAINER BUILD - publishes the image to Docker Hub
name: Blazor (with Reporting) name: Blazor (with Reporting)
on: on:
@@ -13,17 +10,10 @@ on:
paths: paths:
- 'src/Blazor/**/*' - 'src/Blazor/**/*'
- '.github/workflows/main_build-blazor.yml' - '.github/workflows/main_build-blazor.yml'
permissions:
contents: read
packages: write # to publish to GitHub container registry
id-token: write # # JWT for Akeyless auth
env: env:
CONFIGURATION: Release CONFIGURATION: Release
BLAZOR_PROJ_PATH: src/Blazor/MyBlazorApp/MyBlazorApp.csproj PROJ_PATH: src/Blazor/MyBlazorApp.Tests/MyBlazorApp.Tests.csproj
TEST_PROJ_PATH: src/Blazor/MyBlazorApp.Tests/MyBlazorApp.Tests.csproj
NUGET_CONFIG_PATH: src/NuGet.Config
DOTNET_VERSION: "10.0.x" DOTNET_VERSION: "10.0.x"
jobs: jobs:
@@ -31,78 +21,30 @@ jobs:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v6
with:
fetch-depth: 0
# Using AKeyless for secrets in this demo
- name: Fetch secrets from AKeyless
id: akeyless
uses: LanceMcCarthy/akeyless-action@v5
with:
access-id: 'p-4blpeo5zdfeaom'
static-secrets: |
{
"/progress/TELERIK_NUGET_KEY":"TELERIK_NUGET_KEY",
"/progress/TELERIK_LICENSE":"TELERIK_LICENSE_KEY"
}
export-secrets-to-outputs: true
export-secrets-to-environment: false
- name: Setup .NET Core SDK - name: Setup .NET Core SDK
uses: actions/setup-dotnet@v4 uses: actions/setup-dotnet@v5
with: with:
dotnet-version: ${{env.DOTNET_VERSION}} dotnet-version: ${{env.DOTNET_VERSION}}
- name: Restore NuGet Packages
run: |
dotnet restore ${{env.BLAZOR_PROJ_PATH}} --configfile ${{env.NUGET_CONFIG_PATH}}
dotnet restore ${{env.TEST_PROJ_PATH}} --configfile ${{env.NUGET_CONFIG_PATH}}
env:
TELERIK_USERNAME: "api-key"
TELERIK_PASSWORD: ${{steps.akeyless.outputs.TELERIK_NUGET_KEY}}
- name: Build Test Project - name: Build Test Project
run: dotnet build ${{env.TEST_PROJ_PATH}} -c ${{env.CONFIGURATION}} --no-restore run: dotnet build ${{env.PROJ_PATH}} -c ${{env.CONFIGURATION}}
env: env:
TELERIK_LICENSE: ${{steps.akeyless.outputs.TELERIK_LICENSE_KEY}} TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}
build_linux: build_linux:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v6
with:
fetch-depth: 0
# Using AKeyless for secrets in this demo
- name: Fetch secrets from AKeyless
id: akeyless
uses: LanceMcCarthy/akeyless-action@v5
with:
access-id: 'p-4blpeo5zdfeaom'
static-secrets: |
{
"/progress/TELERIK_NUGET_KEY":"TELERIK_NUGET_KEY",
"/progress/TELERIK_LICENSE":"TELERIK_LICENSE_KEY"
}
export-secrets-to-outputs: true
export-secrets-to-environment: false
- name: Setup .NET Core SDK - name: Setup .NET Core SDK
uses: actions/setup-dotnet@v4 uses: actions/setup-dotnet@v5
with: with:
dotnet-version: ${{env.DOTNET_VERSION}} dotnet-version: ${{env.DOTNET_VERSION}}
- name: Restore NuGet Packages
run: |
dotnet restore ${{env.BLAZOR_PROJ_PATH}} --configfile ${{env.NUGET_CONFIG_PATH}}
dotnet restore ${{env.TEST_PROJ_PATH}} --configfile ${{env.NUGET_CONFIG_PATH}}
env:
TELERIK_USERNAME: "api-key"
TELERIK_PASSWORD: ${{steps.akeyless.outputs.TELERIK_NUGET_KEY}}
- name: Build Test Project - name: Build Test Project
run: dotnet build ${{env.TEST_PROJ_PATH}} -c ${{env.CONFIGURATION}} --no-restore run: dotnet build ${{env.PROJ_PATH}} -c ${{env.CONFIGURATION}}
env: env:
TELERIK_LICENSE: ${{steps.akeyless.outputs.TELERIK_LICENSE_KEY}} TELERIK_LICENSE: ${{secrets.TELERIK_LICENSE_KEY}}
+8 -2
View File
@@ -491,9 +491,15 @@ jobs:
codesign -dv --verbose=2 "$APP_BUNDLE_PATH" >/dev/null 2>&1 codesign -dv --verbose=2 "$APP_BUNDLE_PATH" >/dev/null 2>&1
echo "Creating signed app zip and installer pkg..." echo "Creating signed app zip and installer pkg..."
rm -f "$SIGNED_ZIP_PATH" "$SIGNED_PKG_PATH" rm -f "$SIGNED_ZIP_PATH" "$SIGNED_PKG_PATH" component.pkg
ditto -c -k --sequesterRsrc --keepParent "$APP_BUNDLE_PATH" "$SIGNED_ZIP_PATH" ditto -c -k --sequesterRsrc --keepParent "$APP_BUNDLE_PATH" "$SIGNED_ZIP_PATH"
productbuild --component "$APP_BUNDLE_PATH" /Applications --sign "$INSTALLER_SIGN_ID" "$SIGNED_PKG_PATH"
# Build an unsigned component pkg with relocation disabled, then wrap it
# in a signed distribution pkg. This ensures the app always installs to
# /Applications regardless of any existing bundle on the user's machine.
pkgbuild --component "$APP_BUNDLE_PATH" --install-location /Applications --no-relocate component.pkg
productbuild --package component.pkg --sign "$INSTALLER_SIGN_ID" "$SIGNED_PKG_PATH"
rm -f component.pkg
echo "Done. Signed artifacts:" echo "Done. Signed artifacts:"
echo "- $SIGNED_PKG_PATH" echo "- $SIGNED_PKG_PATH"