webseite/.drone.yml

27 lines
416 B
YAML

---
kind: pipeline
type: docker
name: build
trigger:
branch:
- main
event:
- push
- pull_request
steps:
- name: build
image: python:3.10-bullseye
commands:
- python3 -m pip install --user pipx
- export PATH=/root/.local/bin:$PATH
- pipx install lektor
- lektor build
---
kind: signature
hmac: aa654e71bb04571a3861f7b05550caea1b75b162d8c2710f1498a36dc5c2b8da
...