Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhobbs committed Oct 4, 2021
1 parent 4bf7130 commit 742d430
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/builder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
id: changed_addons
run: |
declare -a changed_addons
for addon in ${{ steps.addons.outputs.addons }}; do
for addon in $(echo ${{ steps.addons.outputs.addons }} | sed 's/,//g'); do
if [[ "${{ steps.changed_files.outputs.all }}" =~ $addon ]]; then
for file in ${{ env.MONITORED_FILES }}; do
if [[ "${{ steps.changed_files.outputs.all }}" =~ $addon/$file ]]; then
Expand Down
2 changes: 1 addition & 1 deletion amridm2mqtt/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ schema:
WH_MULTIPLIER: int
READINGS_PER_HOUR: int
DEBUG: str
image: "ghcr.io/home-assistant/{arch}-addon-amridm2mqtt"
image: "ghcr.io/jaredhobbs/{arch}-addon-amridm2mqtt"

0 comments on commit 742d430

Please sign in to comment.