garden/.drone.yml

31 lines
551 B
YAML
Raw Normal View History

2023-05-20 13:32:59 +02:00
kind: pipeline
name: build
steps:
- name: fix link
image: bash
commands:
- bash fix.sh
- name: build
image: klakegg/hugo:alpine
commands:
- hugo
- name: render links
image: python:3.10.6
commands:
- pip install beautifulsoup4 lxml
- python soup.py
- name: deploy
image: node
environment:
CLOUDFLARE_API_TOKEN:
from_secret: api_token
CLOUDFLARE_ACCOUNT_ID:
from_secret: account_id
commands:
- npm install -g wrangler
2023-05-20 14:36:51 +02:00
- npx wrangler pages deploy public --project-name garden --commit-dirty=true