File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -19,16 +19,20 @@ jobs:
19
19
steps :
20
20
- name : Checkout
21
21
uses : actions/checkout@v3
22
+ - name : Set up QEMU
23
+ uses : docker/setup-qemu-action@v3
24
+ - name : Set up Docker Buildx
25
+ uses : docker/setup-buildx-action@v3
22
26
- name : Build SDK
23
- uses : docker/build-push-action@v4
27
+ uses : docker/build-push-action@v6
24
28
with :
25
29
context : .
26
30
load : true
27
31
tags : ${{ env.TEST_TAG }}
28
32
- name : Test SDK
29
33
run : bash ./test_sdk.sh ${{ env.TEST_TAG }}
30
34
- name : Log into Docker Hub
31
- uses : docker/login-action@v2
35
+ uses : docker/login-action@v3
32
36
with :
33
37
username : ${{ github.actor }}
34
38
password : ${{ secrets.DOCKER_HUB_TOKEN }}
39
43
images : lukstep/raspberry-pi-pico-sdk
40
44
- name : Push SDK image
41
45
if : github.event_name == 'release' && github.event.action == 'published'
42
- uses : docker/build-push-action@v4
46
+ uses : docker/build-push-action@v6
43
47
with :
44
48
context : .
45
49
push : true
46
50
tags : ${{ steps.meta.outputs.tags }}
47
51
labels : ${{ steps.meta.outputs.labels }}
52
+ platforms : linux/amd64,linux/arm64
You can’t perform that action at this time.
0 commit comments