old.nicco.io/.drone.yml

51 lines
960 B
YAML
Raw Normal View History

2019-03-03 16:51:45 +01:00
kind: pipeline
name: default
2019-03-03 16:27:15 +01:00
2019-03-03 16:51:45 +01:00
steps:
- name: install
2019-03-03 16:27:15 +01:00
image: node:11-alpine
commands:
- node -v
- npm -v
- npm i
2019-03-03 17:13:46 +01:00
2019-03-04 15:29:28 +01:00
2019-03-03 16:51:45 +01:00
#pipeline:
#
# install:
# image: node:11-alpine
# commands:
# - node -v
# - npm -v
# - npm i
#
# build:
# image: node:11-alpine
# commands:
# - npm run build:prod
#
# copy:
# image: appleboy/drone-scp
# host: nicco.io
# username: deploy
# port: 1312
# secrets: [ ssh_key ]
# target: /srv/web/home
# source:
# - ./public
# - ./docker-compose.yml
# - ./docker-compose.prod.yml
# when:
# event: push
# branch: master
#
# run:
# image: appleboy/drone-ssh
# host: nicco.io
# username: deploy
# port: 1312
# secrets: [ ssh_key ]
# script:
# - cd /srv/web/home
# - docker-compose -f docker-compose.yml -f docker-compose.prod.yml down
# - docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -d