Skip to content

Commit 5c3db3c

Browse files
committed
Add matter over Thread
add ci build test
1 parent 47d51eb commit 5c3db3c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

+18
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,27 @@ jobs:
3030
runs-on: ubuntu-latest
3131
needs: trunk_check
3232
steps:
33+
- name: Checkout
34+
uses: actions/checkout@v4
35+
3336
- name: Login to GitHub Container Registry
3437
uses: docker/login-action@v3
3538
with:
3639
registry: ghcr.io
3740
username: ${{ secrets.DOCKER_USERNAME }}
3841
password: ${{ secrets.DOCKER_PASSWORD }}
42+
43+
- name: Set up QEMU
44+
uses: docker/setup-qemu-action@v3
45+
46+
- name: Set up Docker Buildx
47+
uses: docker/setup-buildx-action@v3
48+
49+
- name: Build and push
50+
uses: docker/build-push-action@v6
51+
with:
52+
push: true
53+
context: ./ci/docker/
54+
tags: esp_idf_xiao_esp32c6_sensor:latest
55+
cache-from: type=gha
56+
cache-to: type=gha,mode=max

0 commit comments

Comments
 (0)