47 lines
694 B
YAML
47 lines
694 B
YAML
# drone 会自动先拉取代码
|
|
# 再按顺序执行 pipeline 配置中定义的任务
|
|
---
|
|
|
|
kind: pipeline
|
|
type: docker
|
|
name: feature
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
trigger:
|
|
branch:
|
|
include:
|
|
- feature/*
|
|
|
|
clone:
|
|
disable: true
|
|
|
|
steps:
|
|
- name: deploy
|
|
image: appleboy/drone-ssh
|
|
settings:
|
|
host:
|
|
from_secret: host
|
|
username: root
|
|
key:
|
|
from_secret: ssh_key
|
|
port: 22
|
|
script_stop: true
|
|
script:
|
|
- cd /var/www/todo
|
|
- git fetch
|
|
- git reset --hard ${DRONE_COMMIT}
|
|
- docker-compose down
|
|
- docker-compose up -d --build
|
|
- docker image prune -f
|
|
when:
|
|
event:
|
|
include:
|
|
- push
|
|
- custom
|
|
|
|
|
|
|