garden/.woodpecker.yml

24 lines
466 B
YAML
Raw Normal View History

2023-06-07 14:26:39 +02:00
pipeline:
fix-link:
image: bash
commands:
- bash fix.sh
build:
image: klakegg/hugo:alpine
commands:
- hugo
render-links:
image: python:3.10.6
commands:
- pip install beautifulsoup4 lxml
- python soup.py
deploy:
image: node
2023-06-07 14:31:05 +02:00
secrets: [cloudflare_api_token ,cloudflare_account_id]
2023-06-07 14:26:39 +02:00
commands:
- npm install -g wrangler
- npx wrangler pages deploy public --project-name garden --commit-dirty=true