deploy
Some checks failed
Build & Deploy KLZ Cables / build-and-deploy (push) Failing after 3m33s

This commit is contained in:
2026-01-27 18:16:26 +01:00
parent 2e0456b081
commit e6f9ad36d3

View File

@@ -221,7 +221,7 @@ jobs:
- name: 🔔 Gotify Notification (Success)
if: success()
run: |
curl -X POST "https://gotify.infra.mintel.me/message?token=${{ secrets.GOTIFY_TOKEN }}" \
curl -k -X POST "https://gotify.infra.mintel.me/message?token=${{ secrets.GOTIFY_TOKEN }}" \
-F "title=✅ Deployment Success: ${{ github.repository }}" \
-F "message=The deployment of ${{ github.repository }} (branch: ${{ github.ref }}) was successful.
@@ -233,7 +233,7 @@ jobs:
- name: 🔔 Gotify Notification (Failure)
if: failure()
run: |
curl -X POST "https://gotify.infra.mintel.me/message?token=${{ secrets.GOTIFY_TOKEN }}" \
curl -k -X POST "https://gotify.infra.mintel.me/message?token=${{ secrets.GOTIFY_TOKEN }}" \
-F "title=❌ Deployment Failed: ${{ github.repository }}" \
-F "message=The deployment of ${{ github.repository }} (branch: ${{ github.ref }}) failed!