Skip to content

Commit e49b1dc

Browse files
committed
Fix typo in manfiest build step
1 parent 27dc967 commit e49b1dc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
paths:
77
- 'firmware/**' # Include all files in firmware/
88
- '!firmware/manifest.json' # Exclude manifest.json
9+
- .github/workflows/build.yaml #Include changes to this file
910

1011
jobs:
1112
build:
@@ -25,7 +26,7 @@ jobs:
2526
uses: esphome/build-action@v4.0.2
2627
with:
2728
yaml-file: firmware/config.yaml
28-
release-summary: "Test" #TODO: change this to the commit message
29+
release-summary: "{{ github.event.head_commit.message }}"
2930
complete-manifest: true
3031
release-url: "https://raw.githubusercontent.com/spuder/OpenSpool/main/firmware/manifest.json"
3132

@@ -36,7 +37,7 @@ jobs:
3637
- name: Copy manifest to firmware folder
3738
run: |
3839
cp openspool-esp32s2/manifest.json firmware/manifest.json
39-
cp opensppool-esp32s2/*.bin firmware
40+
cp openspool-esp32s2/*.bin firmware/
4041
4142
- name: Commit manifest file
4243
uses: EndBug/add-and-commit@v9

0 commit comments

Comments
 (0)