From 8130785060b772e538106b97ee77e744fdd1c698 Mon Sep 17 00:00:00 2001 From: Filip Pytloun Date: Tue, 21 Oct 2025 16:06:04 +0200 Subject: [PATCH] chore(ci): enable verbose output for Pushover notifications and specify full Docker image path - 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 --- .gitea/workflows/build.yml | 6 +++--- Dockerfile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 5c39495..1eaa0bc 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -94,7 +94,7 @@ jobs: - name: Notify via Pushover on failure if: failure() run: | - curl -s \ + curl -v \ -F "token=${{ secrets.PUSHOVER_TOKEN }}" \ -F "user=${{ secrets.PUSHOVER_USER }}" \ --form-string "title=HomeAssistant Build Failed" \ @@ -139,7 +139,7 @@ jobs: - name: Notify via Pushover on failure if: failure() run: | - curl -s \ + curl -v \ -F "token=${{ secrets.PUSHOVER_TOKEN }}" \ -F "user=${{ secrets.PUSHOVER_USER }}" \ --form-string "title=HomeAssistant Promote Failed" \ @@ -166,7 +166,7 @@ jobs: - name: Notify via Pushover on failure if: failure() run: | - curl -s \ + curl -v \ -F "token=${{ secrets.PUSHOVER_TOKEN }}" \ -F "user=${{ secrets.PUSHOVER_USER }}" \ --form-string "title=HomeAssistant Deploy Failed" \ diff --git a/Dockerfile b/Dockerfile index d92fd88..27a33cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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/