Files
notes/.gitea/workflows/deploy.yaml
Jay 0b7f66351f
All checks were successful
Build and Deploy Notes / build (push) Successful in 5s
update workflow
2026-03-02 18:04:43 +00:00

29 lines
623 B
YAML

name: Build and Deploy Notes
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build with MkDocs Material
# This runs ONLY this step inside the mkdocs container
uses: docker://squidfunk/mkdocs-material:latest
with:
args: build
- name: Deploy to Web Folder
run: |
mkdir -p /notes
if [ -d "site" ]; then
cp -R site/* /notes/
else
echo "Error: site directory not found!"
exit 1
fi