Static documentation site in Mkdocs https://doc.gregandev.fr
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
documentation/.drone.yml

86 lines
1.8 KiB

kind: pipeline
2 years ago
name: mkdocs
type: docker
platform:
os: linux
arch: arm64
trigger:
branch:
- master
steps:
2 years ago
- name: build
2 years ago
image: ghcr.io/afritzler/mkdocs-material:8.1.0 #ARM version of mkDocs
pull: if-not-exists
volumes:
2 years ago
- name: site
2 years ago
path: /drone/src/docs
2 years ago
commands:
2 years ago
# - pip install -U -r ./requirements.txt
2 years ago
- cd doc && mkdocs build
2 years ago
# image: squidfunk/mkdocs-material:7.1.9
# volumes:
# - name: site
# path: /site
# commands:
# - pip install -U -r ./requirements.txt
# - mkdocs build
2 years ago
# - name: build docker image and push to registry
# image: plugins/docker
# volumes:
# - name: Dockerfile path
# path: "/src"
# - name: dockersock
# path: "/var/run/docker.sock"
# settings:
# debug: true
# username:
# from_secret: REGISTRY_USER
# password:
# from_secret: REGISTRY_PASSWORD
# registry: "dockerregistry.gregandev.fr"
# insecure: true
# privileged: true
# repo: "dockerregistry.gregandev.fr/gregandoc"
# tags: ${DRONE_TAG}
# dockerfile: ./Dockerfile
- name: deploy
image: drillster/drone-rsync
2 years ago
settings:
2 years ago
hosts: ["192.168.1.101"]
target: /home/gregan/workspace/mkdocs/doc
source: site/*
port:
from_secret: RSYNC_PORT
user:
from_secret: RSYNC_USER
key:
2 years ago
from_secret: RSYNC_STACK_KEY
- name: notification
image: appleboy/drone-telegram
settings:
token:
from_secret: TELEGRAM_TOKEN
to:
from_secret: TELEGRAM_USERID
when:
status:
- failure
- success
format: markdown
message: >
📝 {{repo.name}} / {{commit.branch}} - {{commit.message}}
{{#success build.status}}
✅ succeeded for 👷 build {{build.number}}
{{else}}
🛑 failed for 👷 build {{build.number}}
{{/success}}