diff --git a/.github/workflows/build-deploy.yml b/.github/workflows/build-deploy.yml index 079742a5..3d8892bf 100644 --- a/.github/workflows/build-deploy.yml +++ b/.github/workflows/build-deploy.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - images: ${{ fromJson(vars.IMAGES) }} + images: ["node"] steps: - name: Set up QEMU uses: docker/setup-qemu-action@v2 @@ -45,9 +45,14 @@ jobs: - name: Build and push the images uses: docker/bake-action@v3.1.0 with: - push: true + # push: true + load: true files: | ./gh-actions-bake.hcl ${{ steps.meta.outputs.bake-file }} # Target the default group - probably unnecessary. - targets: ${{ matrix.images }} \ No newline at end of file + targets: ${{ matrix.images }} + + - name: Test image + run: | + docker run --rm ${{ steps.meta.outputs.tags }} \ No newline at end of file