todo/.drone.yml

134 lines
2.3 KiB
YAML
Raw Normal View History

2022-06-14 16:10:00 +08:00
# drone 会自动先拉取代码
# 再按顺序执行 pipeline 配置中定义的任务
2022-06-14 16:12:58 +08:00
kind: pipeline
type: docker
2023-07-09 02:26:34 +08:00
name: feature
2022-06-14 16:12:58 +08:00
platform:
os: linux
arch: amd64
2023-07-09 02:26:34 +08:00
trigger:
branch:
include:
- feature/*
clone:
disable: true
2022-06-14 16:12:58 +08:00
steps:
- name: deploy
image: appleboy/drone-ssh
settings:
2023-07-09 02:26:34 +08:00
host:
from_secret: host
2022-06-14 16:12:58 +08:00
username: root
key:
from_secret: ssh_key
port: 22
script_stop: true
script:
2023-07-09 02:26:34 +08:00
- cd /var/www/todo
- git fetch
2023-07-09 02:37:05 +08:00
- git checkout ${DRONE_BRANCH}
2023-07-09 02:43:14 +08:00
- git reset --hard ${DRONE_COMMIT}
2023-07-09 02:26:34 +08:00
- docker-compose down
- docker-compose up -d --build
- docker image prune -f
when:
event:
include:
- push
- custom
2022-06-14 16:12:58 +08:00
2023-07-09 04:52:38 +08:00
---
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
2023-07-09 05:08:35 +08:00
- docker-compose up -d --build --force-recreate
2023-07-09 04:52:38 +08:00
- docker image prune -f
when:
event:
include:
- pull_request
action:
include:
- opened
- reopened
- synchronized
- name: gitea-pr-comment-failure
image: tsakidev/giteacomment:latest
settings:
gitea_token:
from_secret: gitea_token
2023-07-09 05:08:35 +08:00
gitea_base_url:
from_secret: gitea_base_url
2023-07-09 04:52:38 +08:00
comment_title: "部署 sit 环境失败"
comment: "${DRONE_PULL_REQUEST_TITLE} 部署 sit 环境失败"
when:
status:
- failure
event:
include:
- pull_request
action:
include:
- opened
- reopened
- synchronized
- name: gitea-pr-comment-success
image: tsakidev/giteacomment:latest
settings:
gitea_token:
from_secret: gitea_token
2023-07-09 05:08:35 +08:00
gitea_base_url:
from_secret: gitea_base_url
2023-07-09 04:52:38 +08:00
comment_title: "部署 sit 环境成功"
comment: "${DRONE_PULL_REQUEST_TITLE} 部署 sit 环境成功"
when:
status:
- success
event:
include:
- pull_request
action:
include:
- opened
- reopened
- synchronized
2022-06-14 16:12:58 +08:00