homepage/.drone.yml
Torma Kristóf 9d81a32b0d
All checks were successful
continuous-integration/drone/push Build is passing
change repo structure
2022-05-21 16:48:02 +02:00

22 lines
519 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
environment:
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 webpagefiles --project-name=kmlabz-homepage