Skip to content

Commit e9b511f

Browse files
committed
Second try
1 parent a00a8cf commit e9b511f

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

.github/workflows/sdk-ci.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,30 +24,29 @@ jobs:
2424
- name: Set up Docker Buildx
2525
uses: docker/setup-buildx-action@v3
2626
- name: Build SDK
27-
uses: docker/build-push-action@v4
27+
uses: docker/build-push-action@v6
2828
with:
2929
context: .
3030
load: true
3131
tags: ${{ env.TEST_TAG }}
32-
platforms: linux/amd64,linux/arm64
3332
- name: Test SDK
3433
run: bash ./test_sdk.sh ${{ env.TEST_TAG }}
35-
- name: Log into Docker Hub
36-
uses: docker/login-action@v2
37-
with:
38-
username: ${{ github.actor }}
39-
password: ${{ secrets.DOCKER_HUB_TOKEN }}
34+
# - name: Log into Docker Hub
35+
# uses: docker/login-action@v3
36+
# with:
37+
# username: ${{ github.actor }}
38+
# password: ${{ secrets.DOCKER_HUB_TOKEN }}
4039
- name: Extract SDK metadata
4140
id: meta
4241
uses: docker/metadata-action@v4
4342
with:
4443
images: lukstep/raspberry-pi-pico-sdk
4544
- name: Push SDK image
4645
if: github.event_name == 'release' && github.event.action == 'published'
47-
uses: docker/build-push-action@v4
46+
uses: docker/build-push-action@v6
4847
with:
4948
context: .
50-
push: true
49+
# push: true
5150
tags: ${{ steps.meta.outputs.tags }}
5251
labels: ${{ steps.meta.outputs.labels }}
5352
platforms: linux/amd64,linux/arm64

0 commit comments

Comments
 (0)