chore(ci): enable verbose output for Pushover notifications and specify full Docker image path
All checks were successful
publish / build-and-publish (push) Successful in 3m1s
publish / promote-and-deploy (push) Has been skipped
publish / deploy (push) Has been skipped

- Change curl commands in GitHub Actions workflows to use verbose mode (-v) instead of silent mode (-s) for failure notifications
- Update Dockerfile to use full Docker image path with docker.io registry prefix
This commit is contained in:
2025-10-21 16:06:04 +02:00
parent 0edf72d5e4
commit 8130785060
2 changed files with 4 additions and 4 deletions

View File

@@ -94,7 +94,7 @@ jobs:
- name: Notify via Pushover on failure - name: Notify via Pushover on failure
if: failure() if: failure()
run: | run: |
curl -s \ curl -v \
-F "token=${{ secrets.PUSHOVER_TOKEN }}" \ -F "token=${{ secrets.PUSHOVER_TOKEN }}" \
-F "user=${{ secrets.PUSHOVER_USER }}" \ -F "user=${{ secrets.PUSHOVER_USER }}" \
--form-string "title=HomeAssistant Build Failed" \ --form-string "title=HomeAssistant Build Failed" \
@@ -139,7 +139,7 @@ jobs:
- name: Notify via Pushover on failure - name: Notify via Pushover on failure
if: failure() if: failure()
run: | run: |
curl -s \ curl -v \
-F "token=${{ secrets.PUSHOVER_TOKEN }}" \ -F "token=${{ secrets.PUSHOVER_TOKEN }}" \
-F "user=${{ secrets.PUSHOVER_USER }}" \ -F "user=${{ secrets.PUSHOVER_USER }}" \
--form-string "title=HomeAssistant Promote Failed" \ --form-string "title=HomeAssistant Promote Failed" \
@@ -166,7 +166,7 @@ jobs:
- name: Notify via Pushover on failure - name: Notify via Pushover on failure
if: failure() if: failure()
run: | run: |
curl -s \ curl -v \
-F "token=${{ secrets.PUSHOVER_TOKEN }}" \ -F "token=${{ secrets.PUSHOVER_TOKEN }}" \
-F "user=${{ secrets.PUSHOVER_USER }}" \ -F "user=${{ secrets.PUSHOVER_USER }}" \
--form-string "title=HomeAssistant Deploy Failed" \ --form-string "title=HomeAssistant Deploy Failed" \

View File

@@ -1,4 +1,4 @@
FROM homeassistant/home-assistant:2025.8.3 FROM docker.io/homeassistant/home-assistant:2025.8.3
#COPY src/ /usr/src/homeassistant/homeassistant/ #COPY src/ /usr/src/homeassistant/homeassistant/