Skip to content

Commit

Permalink
Merge pull request #3 from chrisfenner/debug-meta
Browse files Browse the repository at this point in the history
use newer buildx and metadata, disable multi-platform for now to try to get the description for the container working properly
  • Loading branch information
chrisfenner authored Jun 10, 2022
2 parents ad0965a + ffb8782 commit 241e84b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ jobs:
platforms: all

- name: Setup Docker buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2
with:
buildkitd-flags: --debug

# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
Expand All @@ -58,7 +60,7 @@ jobs:
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -71,7 +73,6 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 241e84b

Please sign in to comment.