-
-
Notifications
You must be signed in to change notification settings - Fork 20
35 lines (30 loc) · 1002 Bytes
/
publish-firmware.yml
File metadata and controls
35 lines (30 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Publish Firmware
on:
release:
types: [published]
permissions:
contents: write
jobs:
build-firmware:
name: Build Firmware
uses: esphome/workflows/.github/workflows/build.yml@2025.10.0
with:
#### Modify below here to match your project ####
files: |
project-template-esp32.factory.yaml
project-template-esp32-c3.factory.yaml
project-template-esp32-c6.factory.yaml
project-template-esp32-s3.factory.yaml
esphome-version: 2026.3.2
combined-name: project-template
#### Modify above here to match your project ####
release-summary: ${{ github.event.release.body }}
release-url: ${{ github.event.release.html_url }}
release-version: ${{ github.event.release.tag_name }}
upload-to-release:
name: Upload to Release
uses: esphome/workflows/.github/workflows/upload-to-gh-release.yml@2025.10.0
needs:
- build-firmware
with:
version: ${{ github.event.release.tag_name }}