dazzle/.drone.yml
light7734 3508957c22
All checks were successful
continuous-integration/drone/push Build is passing
ci: fix quoting issues
2025-08-23 15:13:02 +03:30

35 lines
515 B
YAML

kind: pipeline
type: docker
name: deploy_dev
node:
environment: ryali
trigger:
branch:
- main
steps:
- name: build and deploy
image: node:latest
commands:
- npm install
- npm run build
- rm -rf /dazzle/*
- mv ./build/* /dazzle/
---
kind: pipeline
type: docker
name: deploy_prod
node:
environment: ryali
trigger:
event:
- tag
steps:
- name: build and deploy
image: node:latest
commands:
- npm install
- npm run build
- rm -rf /dazzle/*
- mv ./build/* /dazzle/