init
This commit is contained in:
commit
ee317830f3
|
@ -0,0 +1,57 @@
|
|||
kind: pipeline
|
||||
type: docker
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: golang
|
||||
commands:
|
||||
- go build -o valera_tg_bot main.go
|
||||
|
||||
- name: scp
|
||||
image: appleboy/drone-scp
|
||||
settings:
|
||||
host:
|
||||
from_secret: server_ip
|
||||
username:
|
||||
from_secret: ssh_user
|
||||
key:
|
||||
from_secret: ssh_key
|
||||
port:
|
||||
from_secret: ssh_port
|
||||
target:
|
||||
- deploys/valera_tg_bot
|
||||
source:
|
||||
- valera_tg_bot
|
||||
rm: true
|
||||
|
||||
- name: deploy
|
||||
image: appleboy/drone-ssh
|
||||
environment:
|
||||
TOKEN:
|
||||
from_secret: bot_token
|
||||
TOKEN_WEATHER:
|
||||
from_secret: bot_token_weather
|
||||
CHAT_ID:
|
||||
from_secret: bot_chat_id
|
||||
PASSWORD:
|
||||
from_secret: ssh_pass
|
||||
settings:
|
||||
host:
|
||||
from_secret: server_ip
|
||||
username:
|
||||
from_secret: ssh_user
|
||||
key:
|
||||
from_secret: ssh_key
|
||||
port:
|
||||
from_secret: ssh_port
|
||||
envs: [ TOKEN,TOKEN_WEATHER,CHAT_ID,PASSWORD ]
|
||||
command_timeout: 10s
|
||||
script:
|
||||
- cd deploys/valera_tg_bot
|
||||
- echo $${TOKEN} > token.txt
|
||||
- echo $${PASSWORD} | sudo -S systemctl restart valera
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- push
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"configurations": [
|
||||
{
|
||||
"type": "go",
|
||||
"name": "run",
|
||||
"goExecPath": "/usr/local/go/bin/go",
|
||||
"buildParams": [
|
||||
"$PROJECT_DIR$/main.go",
|
||||
],
|
||||
},
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue