From 2f4ef181326f6e81ba4b2b9346450e428937951f Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Fri, 16 May 2025 16:39:39 -0600 Subject: [PATCH] Update .gitea/workflows/gitops-automatic-deployment.yml --- .gitea/workflows/gitops-automatic-deployment.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/gitops-automatic-deployment.yml b/.gitea/workflows/gitops-automatic-deployment.yml index 42d7cf4..cd81d3b 100644 --- a/.gitea/workflows/gitops-automatic-deployment.yml +++ b/.gitea/workflows/gitops-automatic-deployment.yml @@ -17,6 +17,17 @@ jobs: apt-get update apt-get install -y rsync - - name: Rsync to GitOps Folder Target + - name: Debug Rsync to GitOps Folder Target run: | - rsync -av --delete --exclude='.git/' . /Gitops_Destination/ \ No newline at end of file + echo "PWD:" + pwd + echo "Contents of current directory:" + ls -lah + echo "Contents of /Gitops_Destination before rsync:" + ls -lah /Gitops_Destination + + echo "Running rsync..." + rsync -avvi --delete --exclude='.git/' . /Gitops_Destination/ + + echo "Contents of /Gitops_Destination after rsync:" + ls -lah /Gitops_Destination