File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -19,23 +19,30 @@ jobs:
19
19
- name : Checkout repository
20
20
uses : actions/checkout@v4
21
21
22
+ - name : Set up QEMU
23
+ uses : docker/setup-qemu-action@v3
24
+
25
+ - name : Set up Docker Buildx
26
+ uses : docker/setup-buildx-action@v3
27
+
22
28
- name : Log in to the Container registry
23
- uses : docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446
29
+ uses : docker/login-action@v3
24
30
with :
25
31
registry : ${{ env.REGISTRY }}
26
32
username : ${{ github.actor }}
27
33
password : ${{ secrets.GITHUB_TOKEN }}
28
34
29
35
- name : Extract metadata (tags, labels) for Docker
30
36
id : meta
31
- uses : docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81
37
+ uses : docker/metadata-action@v5
32
38
with :
33
39
images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
34
40
35
41
- name : Build and push Docker image
36
- uses : docker/build-push-action@1ca370b3a9802c92e886402e0dd88098a2533b12
42
+ uses : docker/build-push-action@v6
37
43
with :
38
44
context : .
45
+ platforms : linux/amd64,linux/arm64
39
46
target : app-image
40
47
push : true
41
48
tags : ${{ steps.meta.outputs.tags }}
You can’t perform that action at this time.
0 commit comments