Add missing invert_colors yaml prop (#19) #36
This file contains 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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
release: | |
types: [published] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-firmware: | |
name: Build Firmware | |
uses: esphome/workflows/.github/workflows/build.yml@main | |
with: | |
files: | | |
esp32-s3-box/esp32-s3-box.factory.yaml | |
esp32-s3-box-lite/esp32-s3-box-lite.factory.yaml | |
esp32-s3-box-3/esp32-s3-box-3.factory.yaml | |
m5stack-atom-echo/m5stack-atom-echo.factory.yaml | |
esphome-version: 2024.7.3 | |
release-summary: ${{ github.event_name == 'release' && github.event.release.body || '' }} | |
release-url: ${{ github.event_name == 'release' && github.event.release.html_url || '' }} | |
release-version: ${{ github.event_name == 'release' && github.event.release.tag_name || '' }} | |
upload: | |
if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main') | |
name: Upload to R2 | |
needs: | |
- build-firmware | |
uses: esphome/workflows/.github/workflows/upload.yml@main | |
with: | |
directory: wake-word-voice-assistant | |
version: ${{ needs.build-firmware.outputs.version }} | |
secrets: inherit |