Skip to content

Bump esphome from 2024.7.1 to 2024.7.3 #16

Bump esphome from 2024.7.1 to 2024.7.3

Bump esphome from 2024.7.1 to 2024.7.3 #16

Workflow file for this run

name: CI
on:
pull_request:
jobs:
ci:
name: Building ${{ matrix.file }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
file:
- nous-a5t.yml
steps:
- uses: actions/checkout@v4.1.7
- name: Mock secrets.yaml from example
run: cp secrets.yaml.example secrets.yaml
- name: Get ESPHome version
id: get_esphome_version
# read esphome version from requirements.txt
run: |
esphome_version=$(grep esphome requirements.txt | cut -d'=' -f3)
echo "esphome_version=$esphome_version" >> "$GITHUB_OUTPUT"
- name: Build ESPHome firmware to verify configuration
uses: esphome/build-action@v3.2.0
with:
yaml_file: ${{ matrix.file }}
cache: true
version: ${{ steps.get_esphome_version.outputs.esphome_version }}