deployment
ci/woodpecker/push/build Pipeline was successful Details
ci/woodpecker/deployment/build Pipeline failed Details

This commit is contained in:
李亮亮 2024-05-11 10:24:12 +08:00
parent 00628f7ff8
commit 30b515cbfe
2 changed files with 24 additions and 1 deletions

View File

@ -14,5 +14,4 @@ steps:
insecure: true
tags:
- latest
- master
- ${CI_PREV_PIPELINE_CREATED}

24
.woodpecker/.deploy.yml Normal file
View File

@ -0,0 +1,24 @@
clone:
disable: true
steps:
- name: deploy
image: appleboy/drone-ssh
settings:
host:
- blog.lll.net
username: root
password:
from_secret: ssh_password
port: 2022
command_timeout: 2m
script:
- cd /root/learn/
- docker pull docker.lianglianglee.com/lianglianglee/md-view-go:latest
- docker compose down && docker compose up -d
when:
- environment: production
- event: deployment
depends_on:
- build
- docker