generated from vilor/hyde-template
My website.
http://www.vilor.one/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
539 B
31 lines
539 B
2 years ago
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: production
|
||
|
when:
|
||
|
event: [ push ]
|
||
|
branch: [ master ]
|
||
|
|
||
|
trigger:
|
||
|
branch:
|
||
|
- master
|
||
|
|
||
|
steps:
|
||
|
- name: build
|
||
|
image: plotter/chicken-scheme:5.3.0-alpine
|
||
|
commands:
|
||
|
- chicken-install sxml-serializer scss
|
||
|
- make
|
||
|
|
||
|
- name: deploy
|
||
|
image: drillster/drone-rsync
|
||
|
settings:
|
||
|
hosts:
|
||
|
from_secret: deploy_hosts
|
||
|
user:
|
||
|
from_secret: deploy_user
|
||
|
key:
|
||
|
from_secret: deploy_ssh_key
|
||
|
target:
|
||
|
from_secret: deploy_target
|
||
|
source: dist/
|