diff --git a/.github/actions/parse-cmake-preset/action.yaml b/.github/actions/parse-cmake-preset/action.yaml index b16c9ec17..96329b47f 100644 --- a/.github/actions/parse-cmake-preset/action.yaml +++ b/.github/actions/parse-cmake-preset/action.yaml @@ -22,6 +22,7 @@ runs: run: | targets=$(jq '.buildPresets[] | select(.name=="${{ inputs.name }}") | .targets' CMakePresets.json) echo targets=$targets >> "$GITHUB_OUTPUT" + echo $GITHUB_OUTPUT shell: bash working-directory: ${{ env.DEFAULT_DIRECTORY }} diff --git a/.github/workflows/build-cross-target.yaml b/.github/workflows/build-cross-target.yaml index 53bc7fc61..c8fdda594 100644 --- a/.github/workflows/build-cross-target.yaml +++ b/.github/workflows/build-cross-target.yaml @@ -37,6 +37,7 @@ jobs: path: ot3-firmware - name: Parse target + id: get-target uses: ./actions/.github/actions/parse-cmake-preset with: name: format-ci