Skip to content

Fix docker compose call #421

Fix docker compose call

Fix docker compose call #421

Workflow file for this run

---
name: main
on:
push:
jobs:
build:
strategy:
matrix:
build_cmd:
- ./build-latest.sh
- ./build.sh main
fail-fast: false
runs-on: ubuntu-latest
name: Build new images
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build the image with '${{ matrix.build_cmd }}'
id: docker-build
run: ${{ matrix.build_cmd }}
env:
GH_ACTION: enable
- name: Test the image
run: IMAGE="${FINAL_DOCKER_TAG}" ./test.sh
if: steps.docker-build.outputs.skipped != 'true'