bonfire/.drone.yml

38 lines
499 B
YAML
Raw Normal View History

kind: pipeline
2025-08-08 13:45:54 +03:30
type: docker
2025-08-08 14:25:00 +03:30
name: deploy_dev
2025-08-24 10:17:28 +03:30
node:
environment: ryali
2025-08-08 13:45:54 +03:30
trigger:
branch:
- main
steps:
2025-08-09 11:52:18 +03:30
- name: build
image: node:latest
commands:
- npm install
- npm run build
2025-08-24 10:17:28 +03:30
- rm -rf /bonfire_dev/*
- mv ./build/* /bonfire_dev/
2025-08-08 14:25:00 +03:30
---
kind: pipeline
type: docker
name: deploy_prod
2025-08-24 10:17:28 +03:30
node:
environment: ryali
2025-08-08 14:25:00 +03:30
event:
- tag
steps:
2025-08-09 11:52:18 +03:30
- name: build
image: node:latest
commands:
- npm install
- npm run build
2025-08-24 10:17:28 +03:30
- rm -rf /bonfire/*
- mv ./build/* /bonfire/