From a2aca0350c8744ab26e3c3a90a71692689508216 Mon Sep 17 00:00:00 2001 From: bitcoinafterlife Date: Thu, 30 Jul 2026 02:41:26 +0000 Subject: [PATCH] Update .gitea/workflows/deploy.yml --- .gitea/workflows/deploy.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 60f2f6e..ed9d8f8 100755 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -8,8 +8,20 @@ jobs: deploy: runs-on: docs-runner # must match the label of your registered act_runner steps: - - name: Checkout - uses: actions/checkout@v4 + - name: Debug + run: | + echo "REPOSITORY=$GITHUB_REPOSITORY" + echo "SERVER_URL=$GITHUB_SERVER_URL" + echo "GITEA_URL=$GITEA_URL" + env | sort | egrep -i 'GITHUB|GITEA|SERVER|URL|REPOSITORY' || true + + - name: Checkout repository + run: | + git clone --depth 1 https://oauth2:${GITHUB_TOKEN}@${GITHUB_SERVER_URL#https://}/${GITHUB_REPOSITORY} . + + - name: Set up virtualenv + run: | + echo "PATH=/home/git/venv/bin:$PATH" >> $GITHUB_ENV - name: Install dependencies run: pip install --break-system-packages mkdocs-material mkdocs-macros-plugin pyyaml