Weekly Firmware Build #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Weekly Firmware Build | |
| on: | |
| schedule: | |
| - cron: '0 0 * * 1' | |
| jobs: | |
| build: | |
| name: Building ${{ matrix.file }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| file: | |
| - Integrations/ESPHome/TEMP_PRO-1_ETH.yaml | |
| - Integrations/ESPHome/TEMP_PRO-1_W.yaml | |
| esphome-version: | |
| - stable | |
| - beta | |
| - dev | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/[email protected] | |
| - name: Build ESPHome firmware to verify configuration | |
| uses: esphome/build-action@v7 | |
| with: | |
| yaml-file: ${{ matrix.file }} |