Update .gitea/workflows/deploy.yml
Some checks failed
Build and deploy docs / deploy (push) Failing after 0s

This commit is contained in:
2026-07-30 05:01:45 +00:00
parent ad3da0dd53
commit 12ad5fc84a

View File

@@ -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