From 45ba15f4ac285f2be1497cded420f8cdceb3f500 Mon Sep 17 00:00:00 2001 From: Chakru <161002324+chakru-r@users.noreply.github.com> Date: Mon, 15 Sep 2025 04:04:07 +0530 Subject: [PATCH] fix(ci): revert workaround to enumerate image targets (#14755) --- .github/workflows/docker-unified.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-unified.yml b/.github/workflows/docker-unified.yml index c7a68e62d9..7c7e914043 100644 --- a/.github/workflows/docker-unified.yml +++ b/.github/workflows/docker-unified.yml @@ -275,7 +275,7 @@ jobs: DEPOT_BUILD_ID=$(jq -r '.["depot.build"]?.buildID' ${{ github.workspace }}/build/build-metadata.json) echo "build_id=${DEPOT_BUILD_ID}" >> "$GITHUB_OUTPUT" - echo "matrix=$(depot bake -f ${{ github.workspace }}/build/bake-spec-allImages.json --print | jq -c '{"target":.target | keys}')" >> $GITHUB_OUTPUT + echo "matrix=$(jq -c '{"target":.["depot.build"].targets}' ${{ github.workspace }}/build/build-metadata.json)" >> $GITHUB_OUTPUT - name: Save build Metadata if: ${{ needs.setup.outputs.publish == 'true' || needs.setup.outputs.pr-publish == 'true' }}