diff --git a/.github/workflows/build-debian.yml b/.github/workflows/build-debian.yml index fe391fdcd0..28b657fdd5 100644 --- a/.github/workflows/build-debian.yml +++ b/.github/workflows/build-debian.yml @@ -148,7 +148,7 @@ jobs: architecture: ${{ needs.expose-env.outputs.strategy_matrix_architecture }} os: ${{ needs.expose-env.outputs.strategy_matrix_os }} build_type: ${{ needs.expose-env.outputs.strategy_matrix_build_type }} - cmake_args: ${{ needs.expose-env.outputs.strategy_cmake_args }} + cmake_args: ${{ needs.expose-env.outputs.strategy_matrix_cmake_args }} # Install and cache the dependencies using various configurations. install-dependencies: diff --git a/.github/workflows/build-rhel.yml b/.github/workflows/build-rhel.yml index 40775b2f3e..e40203dee1 100644 --- a/.github/workflows/build-rhel.yml +++ b/.github/workflows/build-rhel.yml @@ -116,7 +116,7 @@ jobs: architecture: ${{ needs.expose-env.outputs.strategy_matrix_architecture }} os: ${{ needs.expose-env.outputs.strategy_matrix_os }} build_type: ${{ needs.expose-env.outputs.strategy_matrix_build_type }} - cmake_args: ${{ needs.expose-env.outputs.strategy_cmake_args }} + cmake_args: ${{ needs.expose-env.outputs.strategy_matrix_cmake_args }} # Install and cache the dependencies using various configurations. install-dependencies: diff --git a/.github/workflows/generate-matrix.yml b/.github/workflows/generate-matrix.yml index 97524d0543..574bff5986 100644 --- a/.github/workflows/generate-matrix.yml +++ b/.github/workflows/generate-matrix.yml @@ -28,10 +28,10 @@ on: # generate-matrix: # uses: ./.github/workflows/generate-matrix.yml # with: -# architecture: ${{ env.STRATEGY_MATRIX_ARCHITECTURE }} -# os: ${{ env.STRATEGY_MATRIX_OS }} -# build_type: ${{ env.STRATEGY_MATRIX_BUILD_TYPE }} -# cmake_args: ${{ env.STRATEGY_MATRIX_CMAKE_ARGS }} +# architecture: [...] +# os: [...] +# build_type: [...] +# cmake_args: [...] # ``` # * This workflow can be used as follows: # ```yaml