todo/.drone.yml

92 lines
1.4 KiB
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 checkout ${DRONE_BRANCH}
- git reset --hard ${DRONE_COMMIT}
- docker-compose down
- docker-compose up -d --build --force-recreate
- docker image prune -f
when:
event:
include:
- push
- custom
---
kind: pipeline
type: docker
name: develop
platform:
os: linux
arch: amd64
trigger:
branch:
include:
- develop
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 checkout ${DRONE_BRANCH}
- git reset --hard ${DRONE_COMMIT}
- docker-compose down && docker-compose build --no-cache && docker-compose up -d
when:
event:
include:
- pull_request
action:
include:
- opened
- reopened
- synchronized