Update '.drone.yml'
This commit is contained in:
parent
20c8752842
commit
489b1df47f
1 changed files with 14 additions and 2 deletions
14
.drone.yml
14
.drone.yml
|
@ -3,7 +3,19 @@ kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: default
|
name: default
|
||||||
steps:
|
steps:
|
||||||
- name: backend
|
- name: test
|
||||||
image: golang
|
image: golang
|
||||||
commands:
|
commands:
|
||||||
- go build
|
- go build
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: ssh
|
||||||
|
name: deploy
|
||||||
|
settings:
|
||||||
|
id_rsa:
|
||||||
|
from_secret: ssh_private
|
||||||
|
steps:
|
||||||
|
- name: deploy
|
||||||
|
commands:
|
||||||
|
- /opt/arns/deploy_push_file_service.sh
|
||||||
|
|
Loading…
Reference in a new issue