From a4ee672c1919beb51711bb5afab4f6a4cf7f33a8 Mon Sep 17 00:00:00 2001 From: "Billy D." Date: Mon, 2 Feb 2026 12:01:37 -0500 Subject: [PATCH] feat: correct ntfy topic. --- .gitea/workflows/publish-ray-serve.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/publish-ray-serve.yaml b/.gitea/workflows/publish-ray-serve.yaml index 78e00ed..2da753d 100644 --- a/.gitea/workflows/publish-ray-serve.yaml +++ b/.gitea/workflows/publish-ray-serve.yaml @@ -80,7 +80,7 @@ jobs: - name: Notify on success if: success() run: | - curl -s -X POST "${{ env.NTFY_URL }}/builds" \ + curl -s -X POST "${{ env.NTFY_URL }}/gitea-ci" \ -H "Title: ray-serve-apps published" \ -H "Priority: default" \ -H "Tags: package,white_check_mark" \ @@ -89,7 +89,7 @@ jobs: - name: Notify on failure if: failure() run: | - curl -s -X POST "${{ env.NTFY_URL }}/builds" \ + curl -s -X POST "${{ env.NTFY_URL }}/gitea-ci" \ -H "Title: ray-serve-apps publish failed" \ -H "Priority: high" \ -H "Tags: package,x" \