28 lines
496 B
YAML
28 lines
496 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: docker-deploy
|
|
image: appleboy/drone-ssh
|
|
settings:
|
|
host:
|
|
from_secret: CD_HOST
|
|
username:
|
|
from_secret: CD_USER
|
|
port: 22
|
|
key:
|
|
from_secret: CD_PASS
|
|
script:
|
|
- pwd
|
|
- echo ===== Start Building =====
|
|
- sleep 1s
|
|
- echo ===== Start Building =====
|
|
- sleep 1s
|
|
- echo ===== Start Deploying =====
|
|
- sleep 1s
|
|
- echo ===== Deploy Finished =====
|
|
|
|
|
|
trigger:
|
|
branch:
|
|
- master |