Skip to content

Commit

Permalink
Bump esphome/workflows from 2024.11.1 to 2024.11.3 (esphome#37)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Add glyphsets in substitutions and use that for all fonts
  • Loading branch information
dependabot[bot] authored and drogfild committed Dec 9, 2024
1 parent dbdb99d commit 0036059
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
build-firmware:
name: Build Firmware
uses: esphome/workflows/.github/workflows/[email protected].1
uses: esphome/workflows/.github/workflows/[email protected].3
with:
files: |
esp32-s3-box/esp32-s3-box.factory.yaml
Expand All @@ -30,15 +30,15 @@ jobs:
name: Upload to R2
needs:
- build-firmware
uses: esphome/workflows/.github/workflows/[email protected].1
uses: esphome/workflows/.github/workflows/[email protected].3
with:
directory: wake-word-voice-assistant
secrets: inherit

upload-to-release:
name: Upload to Release
if: github.event_name == 'release'
uses: esphome/workflows/.github/workflows/[email protected].1
uses: esphome/workflows/.github/workflows/[email protected].3
needs:
- build-firmware
with:
Expand All @@ -47,7 +47,7 @@ jobs:
promote-beta:
name: Promote to Beta
if: github.event_name == 'release'
uses: esphome/workflows/.github/workflows/[email protected].1
uses: esphome/workflows/.github/workflows/[email protected].3
needs:
- upload-to-r2
with:
Expand All @@ -60,7 +60,7 @@ jobs:
promote-prod:
name: Promote to Production
if: github.event_name == 'release' && github.event.release.prerelease == false
uses: esphome/workflows/.github/workflows/[email protected].1
uses: esphome/workflows/.github/workflows/[email protected].3
needs:
- upload-to-r2
with:
Expand Down
6 changes: 4 additions & 2 deletions esp32-s3-box-3/esp32-s3-box-3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,8 @@ text_sensor:
if(id(text_request).state.length()>32) {
std::string name = id(text_request).state.c_str();
std::string truncated = esphome::str_truncate(name.c_str(),31);
id(text_request).state = (truncated+"...").c_str();
#id(text_request).state = (truncated+"...").c_str();
id(text_request).state = ("Test äöå").c_str();
}
- id: text_response
Expand All @@ -655,7 +656,8 @@ text_sensor:
if(id(text_response).state.length()>32) {
std::string name = id(text_response).state.c_str();
std::string truncated = esphome::str_truncate(name.c_str(),31);
id(text_response).state = (truncated+"...").c_str();
#id(text_response).state = (truncated+"...").c_str();
id(text_response).state = ("Test äöå").c_str();
}
color:
Expand Down

0 comments on commit 0036059

Please sign in to comment.