79 lines
1.9 KiB
YAML
79 lines
1.9 KiB
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
pull: if-not-exists
|
|
image: golang:1.23
|
|
environment:
|
|
BOT_TOKEN:
|
|
from_secret: bot_token
|
|
POSTGRES_URL_CONNECT:
|
|
from_secret: postgres_url_connect
|
|
settings:
|
|
envs: [ BOT_TOKEN,POSTGRES_URL_CONNECT ]
|
|
commands:
|
|
- CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o smm_tg cmd/smm_tg/main.go
|
|
- touch .env
|
|
- echo BOT_TOKEN=$${BOT_TOKEN} >> .env
|
|
- echo POSTGRES_URL_CONNECT=$${POSTGRES_URL_CONNECT} >> .env
|
|
|
|
- name: test
|
|
pull: if-not-exists
|
|
image: golang:1.23
|
|
commands:
|
|
- go test ./...
|
|
|
|
- name: copy to server
|
|
pull: if-not-exists
|
|
image: appleboy/drone-scp
|
|
settings:
|
|
host:
|
|
from_secret: ssh_ip
|
|
username:
|
|
from_secret: ssh_user
|
|
key:
|
|
from_secret: ssh_key
|
|
port:
|
|
from_secret: ssh_port
|
|
target: /home/crab/deploys/smm_tg
|
|
source:
|
|
- .env
|
|
- build/ci/Dockerfile
|
|
- build/ci/docker-compose.yml
|
|
- migrations
|
|
- smm_tg
|
|
rm: true
|
|
|
|
- name: deploy
|
|
pull: if-not-exists
|
|
image: appleboy/drone-ssh
|
|
environment:
|
|
DB_PASS:
|
|
from_secret: db_pass
|
|
settings:
|
|
host:
|
|
from_secret: ssh_ip
|
|
username:
|
|
from_secret: ssh_user
|
|
key:
|
|
from_secret: ssh_key
|
|
port:
|
|
from_secret: ssh_port
|
|
envs: [ DB_PASS ]
|
|
script:
|
|
- cd /home/crab/deploys/smm_tg
|
|
- cp /etc/ssl/certs/ca-certificates.crt .
|
|
- mv build/ci/Dockerfile .
|
|
- mv build/ci/docker-compose.yml .
|
|
- export PATH=$PATH:/usr/local/go/bin:/$HOME/go/bin
|
|
- goose -allow-missing -dir ./migrations postgres "user=crab password=$${DB_PASS} dbname=smm-tg host=localhost port=5432 sslmode=disable" up
|
|
- docker-compose up -d --force-recreate --build
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
event:
|
|
- push
|