We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ede5153 commit 0538863Copy full SHA for 0538863
.github/workflows/image.yaml
@@ -30,6 +30,9 @@ jobs:
30
uses: docker/setup-qemu-action@v3
31
- name: Set up Docker Buildx
32
uses: docker/setup-buildx-action@v3
33
- - name: Build And Push
34
- run: |
35
- docker buildx build --platform linux/amd64,linux/arm64 -t ghcr.io/${{ github.repository }}:${{ github.event.inputs.tag }} --push .
+ name: Build and push
+ uses: docker/build-push-action@v6
+ with:
36
+ platforms: linux/amd64,linux/arm64
37
+ push: true
38
+ tags: ghcr.io/${{ github.repository }}:${{ github.event.inputs.tag }}
0 commit comments