deps: bump the dev-ci-tools group across 1 directory with 9 updates #1172
Workflow file for this run
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: 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@v5 | |
| - name: "Build the Smart Desk firmware image" | |
| run: | | |
| scripts/build.sh |