Queerscriptors.org/.woodpecker.yml

24 lines
748 B
YAML
Raw Normal View History

2022-08-26 18:19:40 +00:00
pipeline:
2022-08-23 23:22:52 +00:00
build:
image: python:3.8-bullseye
2022-08-23 23:22:52 +00:00
commands:
2022-08-24 00:07:28 +00:00
- apt-get update
- apt-get install -y git ca-certificates gettext wget python3-pip
- wget https://gitlab.torproject.org/tpo/tpa/ci-templates/-/raw/main/lektor-requirements.txt -O requirements.txt
- python3 -m pip install --require-hashes -r requirements.txt
2022-08-26 18:22:14 +00:00
- lektor build --output-path public
2022-08-26 19:30:09 +00:00
check_l10n_freshness:
2022-08-26 19:38:19 +00:00
image: appleboy/drone-discord
2022-08-26 19:30:09 +00:00
settings:
webhook_id:
2022-08-26 19:34:44 +00:00
from_secret: discord_id
2022-08-26 19:30:09 +00:00
webhook_token:
2022-08-26 19:34:44 +00:00
from_secret: discord_token
2022-08-26 19:30:09 +00:00
message: "Test"
publish:
2022-08-26 18:18:52 +00:00
image: debian
commands:
2022-08-26 18:22:14 +00:00
- cp -r public/* /var/www/queerscriptors/
2022-08-23 23:22:52 +00:00
volumes:
- /var/www/queerscriptors:/var/www/queerscriptors