From 410efa2d4e0997c9985303bfbe1855c94cd9f87c Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Tue, 1 Jul 2025 16:08:11 -0600 Subject: [PATCH] Update .gitea/workflows/gitops-automatic-deployment.yml --- .gitea/workflows/gitops-automatic-deployment.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/gitops-automatic-deployment.yml b/.gitea/workflows/gitops-automatic-deployment.yml index 2a8094d..2a0893d 100644 --- a/.gitea/workflows/gitops-automatic-deployment.yml +++ b/.gitea/workflows/gitops-automatic-deployment.yml @@ -9,13 +9,17 @@ jobs: runs-on: gitea-runner-mkdocs steps: - - name: Install Node.js, git, and rsync + - name: Install Node.js, git, rsync, and curl run: | - apk add --no-cache nodejs npm git rsync + apk add --no-cache nodejs npm git rsync curl - name: Checkout Repository uses: actions/checkout@v3 - name: Copy Repository Data to Production Server run: | - rsync -a --delete --exclude='.git/' . /Gitops_Destination/ \ No newline at end of file + rsync -a --delete --exclude='.git/' . /Gitops_Destination/ + + - name: Notify via NTFY + run: | + curl -H "prio:high" -d "https://docs.bunny-lab.io - Workflow Completed" https://ntfy.bunny-lab.io/gitea-runners \ No newline at end of file