From 9dea22ab64e1f837d8d34d2ad16ab3efd810ea3d Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Mon, 17 Feb 2025 21:14:24 -0500 Subject: [PATCH] ci: use explicit deploy-multi-arch-images needs: dynamic job references not supported. --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 65d5cd7..1192fc6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -104,10 +104,9 @@ jobs: run: | docker image push dockcross/base --all-tags - image: - name: ${{ matrix.arch_name.image }} - needs: base - runs-on: ubuntu-22.04 + images: + needs: [base, base-multiarch] + runs-on: ${{ matrix.os }} env: OCI_EXE: docker strategy: @@ -1510,7 +1509,8 @@ jobs: make ${{ matrix.arch_name.image }}.push deploy-multi-arch-images: - needs: ["${{ matrix.image_name }}_on_ubuntu-22.04", "${{ matrix.image_name }}_on_ubuntu-22.04-arm"] + needs: + - images runs-on: ubuntu-22.04 strategy: fail-fast: false