From 3a8ddab1bdfcded54dc0d82d1aff0decdbd69e86 Mon Sep 17 00:00:00 2001 From: Drew Yang Date: Tue, 1 Apr 2025 19:30:49 -0500 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=F0=9F=94=A5=20remove=20redundant=20?= =?UTF-8?q?contribution.md=20|=20check=20docs=20developer=20guide?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CONTRIBUTION.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 CONTRIBUTION.md diff --git a/CONTRIBUTION.md b/CONTRIBUTION.md deleted file mode 100644 index e69de29bb..000000000 From 46766e58cb97ef1c0deab4e22147c8eff4f6055f Mon Sep 17 00:00:00 2001 From: Drew Yang Date: Tue, 1 Apr 2025 19:41:30 -0500 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=F0=9F=90=9B=20add=20missing=20git?= =?UTF-8?q?=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/docker-compose.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/docker-compose.yaml b/docs/docker-compose.yaml index ccb2bac79..6a2eebb49 100644 --- a/docs/docker-compose.yaml +++ b/docs/docker-compose.yaml @@ -23,6 +23,10 @@ services: if echo "$${MODE}" | grep -i live &>/dev/null; then mkdocs serve --config-file /main/docs/mkdocs.yaml -a 0.0.0.0:8000 elif echo "$${MODE}" | grep -iE "qa|build" &>/dev/null; then + git config --global --add safe.directory /main + git config --global user.name "GitHub Action" + git config --global user.email "action@github.com" + git config --global pull.rebase false git branch -D gh-pages || true git fetch $${UPSTREAM_REPO} gh-pages:gh-pages || true mike deploy --ignore-remote-status --config-file /main/docs/mkdocs.yaml -u $$(grep -oP '\d+\.\d+' /main/$${PACKAGE}/version.py) latest