Files
SavaneWiki/.drone.yml
jf d720ee6370
All checks were successful
continuous-integration/drone/push Build is passing
Update .drone.yml
2025-04-01 11:09:19 +02:00

25 lines
471 B
YAML

---
kind: pipeline
type: docker
name: build
steps:
- name: build
image: squidfunk/mkdocs-material:latest
volumes:
- name: site
path: /site
commands:
# - pip install -U -r ./requirements.txt
- pip install --force-reinstall mkdocs
- pip install pymdown-extensions
- mkdocs build --clean -f ./mkdocs.yml
- rm -rf /site/*
- cp -r site/* /site/
- chmod -R 644 /site
volumes:
- name: site
host:
path: /volume1/web/docs
trigger:
branch:
- main