Skip to content

Commit

Permalink
misc: workaround for incompatible buildx output
Browse files Browse the repository at this point in the history
  • Loading branch information
revam committed Jan 23, 2023
1 parent ad9dbd5 commit fa24790
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/docker-daily.yml
Expand Up @@ -40,6 +40,11 @@ jobs:

- uses: docker/setup-buildx-action@v2
name: Set up Docker Buildx
with:
# Disable provenance for now, until it works with docker manifest create.
# The manifest list produced by the new feature is incompatible with the
# expected format used in the docker manifest create command.
provenance: false

- name: Log into docker hub
run: docker login --username ${{ secrets.DOCKER_USERNAME }} --password ${{ secrets.DOCKER_PASSWORD }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/docker-manual.yml
Expand Up @@ -55,6 +55,11 @@ jobs:

- uses: docker/setup-buildx-action@v2
name: Set up Docker Buildx
with:
# Disable provenance for now, until it works with docker manifest create.
# The manifest list produced by the new feature is incompatible with the
# expected format used in the docker manifest create command.
provenance: false

- name: Log into docker hub
run: docker login --username ${{ secrets.DOCKER_USERNAME }} --password ${{ secrets.DOCKER_PASSWORD }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/docker-release.yml
Expand Up @@ -42,6 +42,11 @@ jobs:

- uses: docker/setup-buildx-action@v2
name: Set up Docker Buildx
with:
# Disable provenance for now, until it works with docker manifest create.
# The manifest list produced by the new feature is incompatible with the
# expected format used in the docker manifest create command.
provenance: false

- name: Log into docker hub
run: docker login --username ${{ secrets.DOCKER_USERNAME }} --password ${{ secrets.DOCKER_PASSWORD }}
Expand Down

0 comments on commit fa24790

Please sign in to comment.