From e8b4d515709dad156a4118bc79acb196cdf4f4ff Mon Sep 17 00:00:00 2001 From: Patrick Uhlmann Date: Sun, 12 Feb 2023 22:43:22 +0100 Subject: [PATCH] disable manifest indexes see the change here: https://github.com/docker/build-push-action/issues/755 doesn't work well with cevi.tools registry. --- .github/workflows/build_main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_main.yml b/.github/workflows/build_main.yml index 3cf972b..cfa3136 100644 --- a/.github/workflows/build_main.yml +++ b/.github/workflows/build_main.yml @@ -76,10 +76,11 @@ jobs: - name: Build container uses: docker/build-push-action@v4 with: - context: ./ + context: . file: src/main/docker/Dockerfile.jvm push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.prep.outputs.tags }} + provenance: false labels: | org.opencontainers.image.source=${{ github.event.repository.html_url }} org.opencontainers.image.created=${{ steps.prep.outputs.created }} @@ -123,10 +124,11 @@ jobs: - name: Build container uses: docker/build-push-action@v4 with: - context: ./ + context: . file: src/main/docker/Dockerfile.jvm push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.prep.outputs.tags }} + provenance: false labels: | org.opencontainers.image.source=${{ github.event.repository.html_url }} org.opencontainers.image.created=${{ steps.prep.outputs.created }}