From a759e2e7c59b6753e3f2f6077a749e69ee25f4df Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Fri, 7 Jun 2024 15:39:37 +0200 Subject: [PATCH] Not hitting myself against the wall. --- .github/workflows/ci_build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_build.yaml b/.github/workflows/ci_build.yaml index 8e31d4fb..64844869 100644 --- a/.github/workflows/ci_build.yaml +++ b/.github/workflows/ci_build.yaml @@ -23,7 +23,7 @@ on: - 'main' jobs: - build-matrix: + build: strategy: # super important if you want to see all results, even if one fails # fail-fast is true by default @@ -38,6 +38,6 @@ jobs: needs: build-matrix uses: ./.github/workflows/integration_tests.yaml # calls the one above ^ with: - docker_image: ${{ steps.build.outputs.docker_image }} - docker_devices: ${{ steps.build.outputs.docker_devices }} + docker_image: ${{ jobs.build.outputs.docker_image }} + docker_devices: ${{ jobs.build.outputs.docker_devices }} secrets: inherit