pelican-jdr/.drone.yml
Kazhnuz d24c0776fc
All checks were successful
continuous-integration/drone/push Build is passing
meta: use npm to build
2022-03-26 17:27:21 +01:00

33 lines
567 B
YAML

kind: pipeline
name: production
when:
event: [ push ]
branch: [ master ]
clone:
git:
image: plugins/git
pull: true
steps:
- name: build
image: node:latest
commands:
- npm install -g gulp
- npm i
- npm run build
- name: deploy
image: drillster/drone-rsync
settings:
hosts:
from_secret: deploy_host
target: /var/www/rulebook.kobold.city
source: dist/*
user:
from_secret: deploy_user
key:
from_secret: deploy_key
when:
branch: master
delete: true