homepage/.drone.yml

22 lines
511 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 index.html || true
- name: Deploy to Cloudflare Pages
image: node
settings:
CLOUDFLARE_ACCOUNT_ID:
from_secret: CLOUDFLARE_ACCOUNT_ID
CLOUDFLARE_API_TOKEN:
from_secret: CLOUDFLARE_API_TOKEN
commands:
- npm install wrangler --save-dev
- npx wrangler pages publish . --project-name=kmlabz-homepage