homepage/.drone.yml

22 lines
509 B
YAML

kind: pipeline
type: docker
name: Static KMLabz website
steps:
- name: Validate HTML
image: ubuntu
commands:
- apt-get update && apt-get install -y tidy
- tidy -imu webpagefiles/index.html || true
- name: Deploy to Cloudflare Pages
image: node
environment:
CLOUDFLARE_ACCOUNT_ID:
from_secret: CLOUDFLARE_ACCOUNT_ID
CLOUDFLARE_API_TOKEN:
from_secret: CLOUDFLARE_API_TOKEN
commands:
- npm install -g wrangler
- wrangler pages publish webpagefiles --commit-dirty=true