File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 18
18
jobs :
19
19
geth :
20
20
runs-on : ubuntu-latest
21
+ strategy :
22
+ matrix :
23
+ arch : [linux/amd64, linux/arm64]
21
24
steps :
22
25
- name : Checkout
23
- uses : actions/checkout@v2
26
+ uses : actions/checkout@v3
24
27
25
28
- name : Log into the Container registry
26
29
uses : docker/login-action@v3
32
35
- name : Set up QEMU
33
36
uses : docker/setup-qemu-action@v2
34
37
with :
35
- platforms : linux/amd64,linux/arm64
38
+ platforms : ${{ matrix.arch }}
36
39
37
40
- name : Extract metadata for the Docker image
38
41
id : meta
53
56
push : true
54
57
tags : ${{ steps.meta.outputs.tags }}
55
58
labels : ${{ steps.meta.outputs.labels }}
56
- platforms : linux/amd64,linux/arm64
59
+ platforms : ${{ matrix.arch }}
57
60
reth :
58
61
runs-on : ubuntu-latest
59
62
strategy :
Original file line number Diff line number Diff line change 19
19
- name : Set up QEMU
20
20
uses : docker/setup-qemu-action@v2
21
21
with :
22
- platforms : linux/amd64,linux/arm64
22
+ platforms : ${{ matrix.arch }}
23
23
24
24
- name : Set up Docker Buildx
25
25
uses : docker/setup-buildx-action@v3
You can’t perform that action at this time.
0 commit comments