update workflow
All checks were successful
Build and Deploy Notes / build (push) Successful in 17s

This commit is contained in:
Jay
2026-03-02 18:21:18 +00:00
parent d4109f9d8d
commit 9b4115aafc

View File

@@ -19,26 +19,24 @@ jobs:
apt-get install -y python3-pip apt-get install -y python3-pip
pip3 install --upgrade pip pip3 install --upgrade pip
pip3 install mkdocs-material 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 - name: Build site with MkDocs
run: | run: |
mkdocs build # Ensure we are in the directory containing mkdocs.yml
mkdocs build --clean --site-dir ./dist
- name: Deploy to host-mounted folder - name: Deploy to host-mounted folder
run: | run: |
# 1. Verify the build output exists
if [ ! -d "./dist" ]; then
echo "Error: Build directory ./dist does not exist!"
exit 1
fi
# 2. Ensure destination exists (this is the host-mounted volume)
mkdir -p /notes mkdir -p /notes
cp -R site/* /notes/
# 3. Copy contents from ./dist to /notes
cp -v -R ./dist/* /notes/
# 4. Sync to ensure data is written to disk
sync