From 996c500998a052dfe4b5c47a8a8cc52e832d14e7 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Tue, 1 Jul 2025 18:24:28 -0600 Subject: [PATCH] Update blog/posts/05-16-2025 Learning to Leverage Gitea Runners.md --- .../05-16-2025 Learning to Leverage Gitea Runners.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/blog/posts/05-16-2025 Learning to Leverage Gitea Runners.md b/blog/posts/05-16-2025 Learning to Leverage Gitea Runners.md index d288a53..ec64a32 100644 --- a/blog/posts/05-16-2025 Learning to Leverage Gitea Runners.md +++ b/blog/posts/05-16-2025 Learning to Leverage Gitea Runners.md @@ -84,19 +84,23 @@ on: jobs: GitOps Automatic Deployment: - runs-on: gitea-runner-mkdocs + runs-on: gitea-runner-gatus 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/ + rsync -a --delete --exclude='.git/' --exclude='.gitea/' . /Gitops_Destination/ + + - name: Notify via NTFY + run: | + curl -d "https://docs.bunny-lab.io - Workflow Completed" https://ntfy.bunny-lab.io/gitea-runners ``` !!! note "`runs-on` Variable"