diff --git a/.github/workflows/release-oci.yml b/.github/workflows/release-oci.yml index e6303f38..f83cdcb7 100644 --- a/.github/workflows/release-oci.yml +++ b/.github/workflows/release-oci.yml @@ -56,8 +56,8 @@ jobs: if [[ -f release/oci/test.yml ]]; then export DOCKER_BUILDKIT=1 export COMPOSE_DOCKER_CLI_BUILD=1 - docker-compose --file release/oci/test.yml build - docker-compose --file release/oci/test.yml run sut + docker compose --file release/oci/test.yml build + docker compose --file release/oci/test.yml run sut fi build-and-publish: diff --git a/release/oci/test.yml b/release/oci/test.yml index 31210909..e742031b 100644 --- a/release/oci/test.yml +++ b/release/oci/test.yml @@ -1,4 +1,6 @@ -sut: - build: ../.. - dockerfile: release/oci/Dockerfile - command: selftest.sh +services: + sut: + build: + context: ../.. + dockerfile: release/oci/Dockerfile + command: selftest.sh