2021-04-19 18:48:12 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: deploy
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: prepare
|
|
|
|
image: python
|
|
|
|
commands:
|
|
|
|
- make install -e BUILDDIR=build
|
|
|
|
|
|
|
|
- name: deploy
|
|
|
|
image: appleboy/drone-scp
|
|
|
|
settings:
|
|
|
|
host: www.ducamps.win
|
2021-04-19 19:17:55 +00:00
|
|
|
user: vincent
|
|
|
|
overwrite: true
|
2021-04-19 18:48:12 +00:00
|
|
|
key:
|
|
|
|
from_secret: gitea_private_key
|
2021-04-19 19:35:26 +00:00
|
|
|
target: /usr/share/nginx/html/notebook
|
2021-04-19 18:48:12 +00:00
|
|
|
source: build
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
|