Some checks reported errors
continuous-integration/drone/push Build encountered an error
19 lines
273 B
YAML
19 lines
273 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: deploy
|
|
trigger:
|
|
branch:
|
|
- main
|
|
|
|
steps:
|
|
- name: build
|
|
image: node:latest
|
|
commands:
|
|
- npm install
|
|
- npm run build
|
|
|
|
- name: deploy
|
|
|
|
|
|
commands:
|
|
- scp -r ./build light@5.75.206.84:/home/light/bonfire_dev
|