wiki/.drone.yml
Peter Stuifzand ec22bb31de
Some checks failed
continuous-integration/drone/push Build is failing
Also fetch test packages
2019-03-16 20:37:37 +01:00

47 lines
900 B
YAML

kind: pipeline
name: default
workspace:
base: /go
path: src/p83.nl/go/wiki
steps:
- name: testing
image: golang:1.12
commands:
- export GOPATH=/go
- go get -d -t ./...
- go build ./...
- go test ./...
- name: publish
image: plugins/docker
settings:
repo: registry.stuifzandapp.com/wiki
registry: registry.stuifzandapp.com
username:
from_secret: docker_username
password:
from_secret: docker_password
- name: deploy
image: appleboy/drone-ssh
settings:
host: wiki.p83.nl
username: wiki
ssh_key:
from_secret: ssh_key
script:
- cd /home/wiki/wiki
- docker-compose pull web
- docker-compose up -d
- name: notify
image: plugins/webhook
settings:
debug: true
secrets:
- source: result_webhook
target: plugin_urls