dazzle/.drone.yml

36 lines
515 B
YAML
Raw Normal View History

2025-04-25 14:30:24 +03:30
kind: pipeline
type: docker
name: deploy_dev
2025-08-23 15:10:49 +03:30
node:
environment: ryali
trigger:
branch:
- main
2025-04-25 14:30:24 +03:30
steps:
2025-08-23 15:10:49 +03:30
- name: build and deploy
image: node:latest
commands:
- npm install
- npm run build
2025-08-23 15:13:02 +03:30
- rm -rf /dazzle/*
- mv ./build/* /dazzle/
---
kind: pipeline
type: docker
name: deploy_prod
2025-08-23 15:10:49 +03:30
node:
environment: ryali
trigger:
event:
- tag
steps:
2025-08-23 15:10:49 +03:30
- name: build and deploy
image: node:latest
commands:
- npm install
- npm run build
2025-08-23 15:13:02 +03:30
- rm -rf /dazzle/*
- mv ./build/* /dazzle/