webseite/.drone.yml

27 lines
416 B
YAML
Raw Normal View History

2021-06-06 15:25:09 +02:00
---
kind: pipeline
type: docker
2022-08-24 23:05:00 +02:00
name: build
trigger:
2022-08-24 23:05:00 +02:00
branch:
- main
2022-08-24 23:05:00 +02:00
event:
- push
2022-08-24 23:05:00 +02:00
- pull_request
steps:
- name: build
2022-08-24 23:05:00 +02:00
image: python:3.10-bullseye
commands:
- python3 -m pip install --user pipx
- export PATH=/root/.local/bin:$PATH
- pipx install lektor
- lektor build
2022-07-12 14:48:02 +02:00
---
kind: signature
2022-08-24 23:05:00 +02:00
hmac: aa654e71bb04571a3861f7b05550caea1b75b162d8c2710f1498a36dc5c2b8da
2022-07-12 14:48:02 +02:00
...