22 lines
382 B
YAML
Raw Normal View History

2024-03-08 13:37:12 -07:00
---
kind: pipeline
type: docker
name: default
steps:
- name: frontend
image: node
commands:
- npm install
- npm run build
2024-03-08 13:50:22 -07:00
- npx wrangler pages deploy dist --project-name=the-abstraction-engine
2024-03-08 13:41:08 -07:00
environment:
CLOUDFLARE_API_TOKEN:
from_secret: CLOUDFLARE_API_TOKEN
CLOUDFLARE_ACCOUNT_ID:
from_secret: CLOUDFLARE_ACCOUNT_ID
2024-03-09 01:24:37 -07:00
trigger:
branch:
- main