arns-lt-gemini/.drone.yml

28 lines
352 B
YAML
Raw Normal View History

2022-08-07 15:10:18 +00:00
---
kind: pipeline
type: docker
2022-08-17 21:31:56 +00:00
name: testing
2022-08-07 15:10:18 +00:00
steps:
- name: backend
image: golang
commands:
2022-08-17 21:28:49 +00:00
- 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:
2022-08-17 21:31:56 +00:00
- testing