From 69fda6dc03c56e71388874403d0648b311aa291b Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Thu, 27 Feb 2025 21:42:47 -0800 Subject: [PATCH] Exclude kustomize when committing a change to deployment repo --- .gitea/workflows/publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index c057a18..ed9d10a 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -96,6 +96,6 @@ jobs: run: | git config --global user.email "auto-updater@scubbo.org" git config --global user.name "UpdaterBot" - git add . + git add --all -- ':!kustomize' git commit -m "Update blog content to ${{ gitea.sha}}" git push