mirror of
https://github.com/cupcakearmy/liquet.git
synced 2024-10-31 23:54:12 +01:00
30 lines
469 B
YAML
30 lines
469 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
image:
|
|
pull: always
|
|
commands:
|
|
- node -v
|
|
- npm i
|
|
- npm run build
|
|
|
|
|
|
- name: deploy
|
|
image: cupcakearmy/drone-deploy
|
|
pull: always
|
|
environment:
|
|
PLUGIN_KEY:
|
|
from_secret: ssh_key
|
|
settings:
|
|
host: srv-0.nicco.io
|
|
user: root
|
|
port: 1312
|
|
target: /srv/web/blog
|
|
sources:
|
|
- ./liquet
|
|
when:
|
|
event: push
|
|
branch: master |