-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from ApolloAutomation/beta
Fix ESP Build & Bad Reporting On Wakeup
- Loading branch information
Showing
20 changed files
with
781 additions
and
44 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,30 @@ jobs: | |
release-summary: ${{ github.event_name == 'release' && github.event.release.body || '' }} | ||
release-url: ${{ github.event_name == 'release' && github.event.release.html_url || '' }} | ||
release-version: ${{ (github.event_name == 'release' && github.event.release.tag_name) || (github.event_name == 'workflow_dispatch' && inputs.version) || '' }} | ||
|
||
build-firmware2: | ||
name: Build And Release | ||
uses: esphome/workflows/.github/workflows/build.yml@main | ||
with: | ||
files: | | ||
Integrations/ESPHome/TEMP-1_R2.yaml | ||
esphome-version: stable | ||
combined-name: firmware2 | ||
release-summary: ${{ github.event_name == 'release' && github.event.release.body || '' }} | ||
release-url: ${{ github.event_name == 'release' && github.event.release.html_url || '' }} | ||
release-version: ${{ (github.event_name == 'release' && github.event.release.tag_name) || (github.event_name == 'workflow_dispatch' && inputs.version) || '' }} | ||
|
||
build-firmware-b2: | ||
name: Build And Release | ||
uses: esphome/workflows/.github/workflows/build.yml@main | ||
with: | ||
files: | | ||
Integrations/ESPHome/TEMP-1B_R2.yaml | ||
esphome-version: stable | ||
combined-name: firmware-b2 | ||
release-summary: ${{ github.event_name == 'release' && github.event.release.body || '' }} | ||
release-url: ${{ github.event_name == 'release' && github.event.release.html_url || '' }} | ||
release-version: ${{ (github.event_name == 'release' && github.event.release.tag_name) || (github.event_name == 'workflow_dispatch' && inputs.version) || '' }} | ||
|
||
build-site: | ||
name: Build Site | ||
|
@@ -59,6 +83,8 @@ jobs: | |
needs: | ||
- build-firmware | ||
- build-firmware-b | ||
- build-firmware2 | ||
- build-firmware-b2 | ||
- build-site | ||
permissions: | ||
pages: write | ||
|
@@ -75,6 +101,14 @@ jobs: | |
with: | ||
name: firmware-b | ||
path: firmware-b | ||
- uses: actions/[email protected] | ||
with: | ||
name: firmware-b2 | ||
path: firmware-b2 | ||
- uses: actions/[email protected] | ||
with: | ||
name: firmware2 | ||
path: firmware2 | ||
|
||
- name: Copy firmware and manifest | ||
run: |- | ||
|
@@ -84,6 +118,14 @@ jobs: | |
run: |- | ||
mkdir -p output/firmware-b | ||
cp -r firmware-b/${{ needs.build-firmware.outputs.version }}/* output/firmware-b/ | ||
- name: Copy firmware and manifest | ||
run: |- | ||
mkdir -p output/firmware2 | ||
cp -r firmware2/${{ needs.build-firmware.outputs.version }}/* output/firmware2/ | ||
- name: Copy firmware and manifest | ||
run: |- | ||
mkdir -p output/firmware-b2 | ||
cp -r firmware-b2/${{ needs.build-firmware.outputs.version }}/* output/firmware-b2/ | ||
- uses: actions/[email protected] | ||
with: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
sensor: | ||
- platform: resistance | ||
id: resistance_sensor | ||
sensor: source_sensor | ||
configuration: UPSTREAM | ||
reference_voltage: 3.3V | ||
resistor: 100kOhm | ||
name: Resistance Sensor | ||
internal: true | ||
accuracy_decimals: 4 |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
sensor: | ||
- platform: resistance | ||
id: resistance_sensor | ||
sensor: source_sensor | ||
configuration: UPSTREAM | ||
reference_voltage: 3.3V | ||
resistor: 4.7kOhm | ||
name: Resistance Sensor | ||
internal: true | ||
accuracy_decimals: 4 |
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
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
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
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
Oops, something went wrong.