Fix docker compose call #421
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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' |