From 4e7480125f20fe98bd8ca0614016614bbcc3f6db Mon Sep 17 00:00:00 2001 From: Bart Thomee <11445373+bthomee@users.noreply.github.com> Date: Sun, 27 Jul 2025 10:49:00 -0400 Subject: [PATCH] Use workflow_call --- .github/workflows/generate-matrix.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/generate-matrix.yml b/.github/workflows/generate-matrix.yml index 79f53c3e67..3fe2491944 100644 --- a/.github/workflows/generate-matrix.yml +++ b/.github/workflows/generate-matrix.yml @@ -54,13 +54,13 @@ jobs: generate-matrix: runs-on: ${{ inputs.runner }} steps: - - name: Generate outputs - id: generate - run: | - echo "architecture=$(jq -c <<< '${{ inputs.architecture }}')" >> "$GITHUB_OUTPUT" - echo "os=$(jq -c <<< '${{ inputs.os }}')" >> "$GITHUB_OUTPUT" - echo "build_type=$(jq -c <<< '${{ inputs.build_type }}')" >> "$GITHUB_OUTPUT" - echo "cmake_args=$(jq -c <<< '${{ inputs.cmake_args }}')" >> "$GITHUB_OUTPUT" + - name: Generate outputs + id: generate + run: | + echo "architecture=$(jq -c <<< '${{ inputs.architecture }}')" >> "$GITHUB_OUTPUT" + echo "os=$(jq -c <<< '${{ inputs.os }}')" >> "$GITHUB_OUTPUT" + echo "build_type=$(jq -c <<< '${{ inputs.build_type }}')" >> "$GITHUB_OUTPUT" + echo "cmake_args=$(jq -c <<< '${{ inputs.cmake_args }}')" >> "$GITHUB_OUTPUT" outputs: architecture: ${{ steps.generate.outputs.architecture }} os: ${{ steps.generate.outputs.os }}