30 lines
448 B
YAML
Raw Normal View History

2024-10-03 09:03:28 +02:00
---
steps:
build:
2024-10-04 09:20:34 +02:00
image: moanos/sphinx-rtd
2024-10-03 09:03:28 +02:00
commands:
- cd docs && make html
2025-01-19 07:12:09 +01:00
when:
event: [ tag, push ]
2024-10-03 09:03:28 +02:00
deploy:
image: appleboy/drone-scp
settings:
strip_components: 3
host:
from_secret: host
username:
from_secret: ssh_user
target:
from_secret: path
source: docs/_build/html/
key:
from_secret: ssh_key
2025-01-19 07:12:09 +01:00
when:
event: [ tag, push ]
2024-10-03 09:03:28 +02:00