Not hitting myself against the wall.

This commit is contained in:
Nicolas Patry 2024-06-07 15:39:37 +02:00
parent 8712a367dc
commit a759e2e7c5
No known key found for this signature in database
GPG Key ID: 690EBED7128A9DC8
1 changed files with 3 additions and 3 deletions

View File

@ -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