From d4109f9d8daca897ec7a98e090a2457b793fd5aa Mon Sep 17 00:00:00 2001 From: Jay Date: Mon, 2 Mar 2026 18:18:50 +0000 Subject: [PATCH] update workflow --- .gitea/workflows/deploy.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index c74f170..ce7d2ee 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -20,6 +20,20 @@ jobs: pip3 install --upgrade pip pip3 install mkdocs-material + - name: Deploy to host-mounted folder + run: | + # Debug: See if the directory is actually a mount + mount | grep /notes || echo "Warning: /notes is not a mount point!" + + # Ensure we can write to it + mkdir -p /notes + + # Copy files + cp -v -R site/* /notes/ + + # List contents to verify they exist in the container context + ls -la /notes + - name: Build site with MkDocs run: | mkdocs build