fantus/.drone.yml

35 lines
666 B
YAML
Raw Normal View History

2020-01-12 19:29:34 +01:00
kind: pipeline
name: default
steps:
- name: build
image: node:alpine
pull: always
commands:
- node -v
- yarn -v
- yarn
- yarn run build
- name: deploy
image: cupcakearmy/drone-deploy
pull: always
environment:
PLUGIN_KEY:
from_secret: ssh_key
settings:
host: fantus.studio
user: root
port: 1312
target: /srv/web/fantus
sources:
- ./docker-compose.prod.yml
- ./package.json
- ./next.config.js
- ./.next
commands:
- docker-compose -f docker-compose.prod.yml up -d --build
when:
event: push
branch: master