21 lines
374 B
YAML
21 lines
374 B
YAML
steps:
|
|
|
|
- name: prepare
|
|
image: alpine:latest
|
|
commands:
|
|
- ls -la
|
|
- pwd
|
|
- find . -type f | head -n 20
|
|
- name: deploy
|
|
image: appleboy/drone-ssh
|
|
settings:
|
|
host: 192.168.0.109
|
|
user: deployer
|
|
key:
|
|
from_secret: SSH_PRIVATE_KEY
|
|
script:
|
|
- rsync -av ./ /opt/testbot-git/
|
|
when:
|
|
event: push
|
|
branch: main
|