all-tg-bot/.drone.yml

52 lines
968 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: build
image: golang
commands:
- go build -o butler_tg_bot main.go
- name: scp
image: appleboy/drone-scp
settings:
host:
from_secret: ssh_ip
username:
from_secret: ssh_login
password:
from_secret: ssh_pass
port:
from_secret: ssh_port
target: bots
source:
- butler_tg_bot
rm: true
- name: deploy
image: appleboy/drone-ssh
environment:
TOKEN:
from_secret: bot_token
settings:
host:
from_secret: ssh_ip
username:
from_secret: ssh_login
password:
from_secret: ssh_pass
port:
from_secret: ssh_port
envs: [ TOKEN ]
command_timeout: 10s
script:
- cd bots
- pkill butler_tg_bot
- echo $${TOKEN} > token.txt
- sudo systemctl restart butler_tg_bot
trigger:
event:
- tag