add drone

This commit is contained in:
Владимир Фёдоров 2022-04-25 00:49:33 +07:00
parent c2b383b5cc
commit 023ec4bc03
1 changed files with 53 additions and 0 deletions

53
.drone.yml Normal file
View File

@ -0,0 +1,53 @@
kind: pipeline
type: docker
name: default
steps:
- name: build
image: golang
commands:
- go build -o verochka_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/verochka_tg_bot
source:
- verochka_tg_bot
rm: true
- name: deploy
image: appleboy/drone-ssh
environment:
TOKEN:
from_secret: bot_token
PASSWORD:
from_secret: ssh_pass
settings:
host:
from_secret: ssh_ip
username:
from_secret: ssh_login
password:
from_secret: ssh_pass
port:
from_secret: ssh_port
envs: [ TOKEN,TOKEN_WEATHER,PASSWORD ]
command_timeout: 10s
script:
- cd bots/verochka_tg_bot
- echo $${TOKEN} > token.txt
- echo $${TOKEN_WEATHER} > token.txt
- echo $${PASSWORD} | sudo -S systemctl restart verochka_tg_bot
trigger:
event:
- push