25 lines
403 B
Plaintext
25 lines
403 B
Plaintext
kind: pipeline
|
|
type: docker
|
|
name: bookmarkPublish
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|
|
|
|
clone:
|
|
disable: true
|
|
|
|
steps:
|
|
- name: deploy
|
|
image: appleboy/drone-ssh
|
|
settings:
|
|
host:
|
|
from_secret: devHost
|
|
port: 22
|
|
user: root
|
|
key:
|
|
from_secret: privateSsh
|
|
timeout: 3m
|
|
script:
|
|
- cd /root/qieziStatistics && git pull && bash build.sh && syncFile.sh
|