We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c3db3c commit 8a55570Copy full SHA for 8a55570
.github/workflows/build.yml
@@ -51,6 +51,21 @@ jobs:
51
with:
52
push: true
53
context: ./ci/docker/
54
- tags: esp_idf_xiao_esp32c6_sensor:latest
+ tags: ghcr.io/BegoonLab/esp_idf_xiao_esp32c6_sensor:latest
55
cache-from: type=gha
56
cache-to: type=gha,mode=max
57
+
58
+ build_for_wifi:
59
+ name: Build firmware for WiFi setup
60
+ runs-on: ubuntu-latest
61
+ needs: build_docker_image
62
+ steps:
63
+ - name: Checkout
64
+ uses: actions/checkout@v4
65
66
+ - name: Build firmware
67
+ run: |
68
+ docker run --rm -t \
69
+ -v $PWD:/opt/esp/project \
70
+ -w /opt/esp/project \
71
+ ghcr.io/BegoonLab/esp_idf_xiao_esp32c6_sensor:latest idf.py -D SDKCONFIG_DEFAULTS="sdkconfig.ci.wifi" build
0 commit comments