We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 982bc94 commit 8cdbb81Copy full SHA for 8cdbb81
.github/workflows/release.yaml
@@ -41,20 +41,24 @@ jobs:
41
ref: ${{ steps.params.outputs.ref }}
42
persist-credentials: false
43
44
+ - name: Set up QEMU
45
+ uses: docker/setup-qemu-action@v3
46
+
47
+ - name: Set up Buildx
48
+ id: buildx
49
+ uses: docker/setup-buildx-action@v3
50
51
- name: Log in to the container registry
52
uses: docker/login-action@v3
53
with:
54
registry: ghcr.io
55
username: ${{ github.actor }}
56
password: ${{ secrets.GITHUB_TOKEN }}
57
- - name: Set up Buildx
- id: buildx
- uses: docker/setup-buildx-action@v3
-
58
- name: Build and push
59
uses: docker/build-push-action@v5
60
61
+ platforms: linux/amd64,linux/arm64
62
context: .
63
target: prod
64
file: Dockerfile
0 commit comments