We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cb22ff commit a9bb6a7Copy full SHA for a9bb6a7
.github/workflows/docker-publish.yml
@@ -48,6 +48,9 @@ jobs:
48
uses: docker/setup-qemu-action@v3
49
# 👆 This enables ARM emulation on AMD64 runner
50
51
+ - name: Set up Docker Buildx
52
+ uses: docker/setup-buildx-action@v3
53
+
54
- name: Log in to GitHub Container Registry
55
uses: docker/login-action@v3
56
with:
@@ -71,7 +74,7 @@ jobs:
71
74
context: .
72
75
platforms: linux/amd64,linux/arm64
73
76
file: ./docker/Dockerfile
- push: true
77
+ push: false
78
tags: |
79
ghcr.io/${{ env.LOWERCASE_REPO }}:latest
80
ghcr.io/${{ env.LOWERCASE_REPO }}:${{ github.sha }}
0 commit comments