diff --git a/.github/workflows/build-deps.yml b/.github/workflows/build-deps.yml index d9ec02a..398de9c 100644 --- a/.github/workflows/build-deps.yml +++ b/.github/workflows/build-deps.yml @@ -18,7 +18,7 @@ jobs: name: Prepare Build runs-on: ubuntu-24.04 outputs: - dockerDistros: ${{ steps.set_matrix.outputs.dockerDistros }} + docker_distros: ${{ steps.set_matrix.outputs.docker_distros }} steps: - name: Checkout uses: actions/checkout@v4 @@ -55,7 +55,7 @@ jobs: with: runner: ${{ matrix.runner }} arch: ${{ matrix.arch }} - docker_distros: ${{ needs.prepare.outputs.dockerDistros }} + docker_distros: ${{ needs.prepare.outputs.docker_distros }} build_deps_manifests: name: Build Deps Manifests @@ -63,4 +63,4 @@ jobs: needs: [ prepare, build_deps ] uses: ./.github/workflows/_build-deps-manifest.yml with: - docker_distros: ${{ needs.prepare.outputs.dockerDistros }} + docker_distros: ${{ needs.prepare.outputs.docker_distros }} diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml index 35ef1a6..63a381d 100644 --- a/.github/workflows/build-images.yml +++ b/.github/workflows/build-images.yml @@ -11,9 +11,9 @@ jobs: name: Prepare Build runs-on: ubuntu-24.04 outputs: - dockerDistros: ${{ steps.set_matrix.outputs.dockerDistros }} - dotnetVersions: ${{ steps.set_matrix.outputs.dotnetVersions }} - dotnetVariants: ${{ steps.set_matrix.outputs.dotnetVariants }} + docker_distros: ${{ steps.set_matrix.outputs.docker_distros }} + dotnet_versions: ${{ steps.set_matrix.outputs.dotnet_versions }} + dotnet_variants: ${{ steps.set_matrix.outputs.dotnet_variants }} if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }} steps: - name: Checkout @@ -42,7 +42,7 @@ jobs: strategy: fail-fast: false matrix: - dotnet_variant: ${{ fromJson(needs.prepare.outputs.dotnetVariants) }} + dotnet_variant: ${{ fromJson(needs.prepare.outputs.dotnet_variants) }} arch: [ amd64, arm64 ] runner: [ ubuntu-24.04, ubuntu-24.04-arm ] exclude: @@ -56,8 +56,8 @@ jobs: runner: ${{ matrix.runner }} arch: ${{ matrix.arch }} dotnet_variant: ${{ matrix.dotnet_variant }} - dotnet_versions: ${{ needs.prepare.outputs.dotnetVersions }} - docker_distros: ${{ needs.prepare.outputs.dockerDistros }} + dotnet_versions: ${{ needs.prepare.outputs.dotnet_versions }} + docker_distros: ${{ needs.prepare.outputs.docker_distros }} build_images_manifest: name: Build Images Manifest (${{ matrix.dotnet_variant }}) @@ -66,11 +66,11 @@ jobs: strategy: fail-fast: false matrix: - dotnet_variant: ${{ fromJson(needs.prepare.outputs.dotnetVariants) }} + dotnet_variant: ${{ fromJson(needs.prepare.outputs.dotnet_variants) }} uses: ./.github/workflows/_build-images-manifest.yml with: runner: ${{ matrix.runner }} dotnet_variant: ${{ matrix.dotnet_variant }} - dotnet_versions: ${{ needs.prepare.outputs.dotnetVersions }} - docker_distros: ${{ needs.prepare.outputs.dockerDistros }} + dotnet_versions: ${{ needs.prepare.outputs.dotnet_versions }} + docker_distros: ${{ needs.prepare.outputs.docker_distros }} diff --git a/build/build/Tasks/SetMatrix.cs b/build/build/Tasks/SetMatrix.cs index e85c113..7d02159 100644 --- a/build/build/Tasks/SetMatrix.cs +++ b/build/build/Tasks/SetMatrix.cs @@ -8,9 +8,9 @@ public override void Run(BuildContext context) { if (context.BuildSystem().IsRunningOnGitHubActions) { - context.GitHubActions().Commands.SetOutputParameter("dockerDistros", context.SerializeJson(Constants.DockerDistros)); - context.GitHubActions().Commands.SetOutputParameter("dotnetVersions", context.SerializeJson(Constants.DotnetVersions)); - context.GitHubActions().Commands.SetOutputParameter("dotnetVariants", context.SerializeJson(Constants.DotnetVariants)); + context.GitHubActions().Commands.SetOutputParameter("docker_distros", context.SerializeJson(Constants.DockerDistros)); + context.GitHubActions().Commands.SetOutputParameter("dotnet_versions", context.SerializeJson(Constants.DotnetVersions)); + context.GitHubActions().Commands.SetOutputParameter("dotnet_variants", context.SerializeJson(Constants.DotnetVariants)); } else {