We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47d51eb commit 5c3db3cCopy full SHA for 5c3db3c
.github/workflows/build.yml
@@ -30,9 +30,27 @@ jobs:
30
runs-on: ubuntu-latest
31
needs: trunk_check
32
steps:
33
+ - name: Checkout
34
+ uses: actions/checkout@v4
35
+
36
- name: Login to GitHub Container Registry
37
uses: docker/login-action@v3
38
with:
39
registry: ghcr.io
40
username: ${{ secrets.DOCKER_USERNAME }}
41
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