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