deps: bump esphome from 2024.10.3 to 2024.11.1 in /config/smart-desk/esphome in the home-lab-workloads group across 1 directory #1100
Workflow file for this run
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 firmware images | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
contents: read | |
on: # yamllint disable-line rule:truthy | |
push: | |
paths: | |
- ".github/workflows/build-firmware-images.yaml" | |
- "config/smart-desk/**" | |
pull_request: | |
paths: | |
- ".github/workflows/build-firmware-images.yaml" | |
- "config/smart-desk/**" | |
jobs: | |
build-smart-desk: | |
concurrency: | |
# Ref: https://docs.github.com/en/actions/learn-github-actions/contexts#github-context | |
# github.head_ref: head_ref or source branch of the pull request | |
# github.ref: ref of the branch that triggered the workflow | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
working-directory: config/smart-desk/esphome | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Build the Smart Desk firmware image" | |
run: | | |
scripts/build.sh |