From 12ad5fc84a7bc111a3228f8ef5ebf8ffa66d8e6f Mon Sep 17 00:00:00 2001 From: bitcoinafterlife Date: Thu, 30 Jul 2026 05:01:45 +0000 Subject: [PATCH] Update .gitea/workflows/deploy.yml --- .gitea/workflows/deploy.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 8dd9074..c535ce1 100755 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -8,6 +8,12 @@ jobs: deploy: runs-on: docs-runner # must match the label of your registered act_runner steps: + - name: Load environment + run: | + set -a + source .env + set +a + echo "BAL_DOCS_DEPLOY_DIR=$BAL_DOCS_DEPLOY_DIR" >> $GITHUB_ENV - name: Checkout repository run: | @@ -27,4 +33,4 @@ jobs: run: mkdocs build --strict - name: Publish - run: rsync -a --delete site/ /var/www/bal-docs/ + run: rsync -a --delete site/ $BAL_DOCS_DEPLOY_DIR