generated from esphome/esphome-project-template
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
885e4c4
commit f107f11
Showing
2 changed files
with
5 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,10 +55,6 @@ jobs: | |
file: ${{ fromJson(needs.prepare.outputs.files) }} | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Replace package_import_url branch | ||
run: | | ||
branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} | ||
sed -i "s/@main/@$branch/g" ${{ matrix.file }} | ||
- uses: esphome/[email protected] | ||
id: esphome-build | ||
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 |
---|---|---|
|
@@ -20,6 +20,11 @@ jobs: | |
steps: | ||
- name: Checkout source code | ||
uses: actions/[email protected] | ||
- name: Replace package_import_url branch to current dev branch | ||
run: | | ||
branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} | ||
echo ${branch} | ||
sed -i "s/@main/@${branch}/g" ./*factory.yaml | ||
- name: Build ESPHome firmware to verify configuration | ||
uses: esphome/[email protected] | ||
id: esphome-build | ||
|