From 986fcd067e95b95b7f0c6c8c6ed020af3fe7227e Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Tue, 27 Jan 2026 19:09:43 +0100 Subject: [PATCH] deploy --- .gitea/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index bb09a2be..5c7c7fa2 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -222,7 +222,7 @@ jobs: if: success() run: | echo "Sending success notification to Gotify..." - RESPONSE=$(curl -k -s -w "\n%{http_code}" -X POST "https://gotify.infra.mintel.me/message?token=${{ secrets.GOTIFY_TOKEN }}" \ + RESPONSE=$(curl -k -s -w "\n%{http_code}" -X POST "${{ secrets.GOTIFY_URL }}/message?token=${{ secrets.GOTIFY_TOKEN }}" \ -F "title=✅ Deployment Success: ${{ github.repository }}" \ -F "message=The deployment of ${{ github.repository }} (branch: ${{ github.ref }}) was successful. @@ -246,7 +246,7 @@ jobs: if: failure() run: | echo "Sending failure notification to Gotify..." - RESPONSE=$(curl -k -s -w "\n%{http_code}" -X POST "https://gotify.infra.mintel.me/message?token=${{ secrets.GOTIFY_TOKEN }}" \ + RESPONSE=$(curl -k -s -w "\n%{http_code}" -X POST "${{ secrets.GOTIFY_URL }}/message?token=${{ secrets.GOTIFY_TOKEN }}" \ -F "title=❌ Deployment Failed: ${{ github.repository }}" \ -F "message=The deployment of ${{ github.repository }} (branch: ${{ github.ref }}) failed!