Skip to content

Commit

Permalink
disable manifest indexes
Browse files Browse the repository at this point in the history
see the change here: docker/build-push-action#755
doesn't work well with cevi.tools registry.
  • Loading branch information
patrickuhlmann committed Feb 12, 2023
1 parent 892b9e7 commit e8b4d51
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build_main.yml
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit e8b4d51

Please sign in to comment.