From ac15e695cf50c3a419606482cad34603f31426ba Mon Sep 17 00:00:00 2001 From: Matthew Whitlock Date: Tue, 8 Oct 2024 20:05:09 -0400 Subject: [PATCH] Actually run the bootstrap container --- .github/workflows/ci_checks.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_checks.yaml b/.github/workflows/ci_checks.yaml index 7edc7b0..a15226f 100644 --- a/.github/workflows/ci_checks.yaml +++ b/.github/workflows/ci_checks.yaml @@ -18,13 +18,16 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - - name: Bootstrap the environment Dockerfile + - name: Bake the bootstrap docker image uses: docker/bake-action@v5 with: files: .github/docker-compose.yml load: true targets: bootstrap workdir: . + + - name: Bootstrap the environment Dockerfile + run: docker run local/bootstrap - name: Build the environment uses: docker/bake-action@v5