-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix 404 error for wrong path to firmware bin
- Loading branch information
1 parent
781dbfa
commit 9b9e2c3
Showing
1 changed file
with
1 addition
and
1 deletion.
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 |
---|---|---|
|
@@ -95,7 +95,7 @@ jobs: | |
echo ${{ steps.esphome-build.outputs.version }} > output/${{ matrix.device }}/version | ||
- name: 🔨 Alter path in manifest.json | ||
run: | | ||
sed -i 's/${{ steps.esphome-build.outputs.name }}\//\/${{ matrix.device }}\//g' output/${{ matrix.device }}/manifest.json | ||
sed -i 's/${{ steps.esphome-build.outputs.name }}\//\/${{ env.REPOSITORY }}\/${{ matrix.device }}\//g' output/${{ matrix.device }}/manifest.json | ||
- name: ⬆️ Upload firmware / device artifact | ||
uses: actions/[email protected] | ||
with: | ||
|