Update '.drone.yml'
This commit is contained in:
parent
d59c6b9f39
commit
e0b16d03fe
1 changed files with 19 additions and 1 deletions
20
.drone.yml
20
.drone.yml
|
@ -7,4 +7,22 @@ steps:
|
||||||
- name: backend
|
- name: backend
|
||||||
image: golang
|
image: golang
|
||||||
commands:
|
commands:
|
||||||
- go build
|
- go build
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: ssh
|
||||||
|
name: deploy
|
||||||
|
server:
|
||||||
|
host:
|
||||||
|
from_secret: host
|
||||||
|
user:
|
||||||
|
from_secret: username
|
||||||
|
ssh_key:
|
||||||
|
from_secret: ssh_private
|
||||||
|
steps:
|
||||||
|
- name: deploy
|
||||||
|
commands:
|
||||||
|
- /opt/arns/deploy_gemini.sh
|
||||||
|
depends_on:
|
||||||
|
- backend
|
Loading…
Reference in a new issue