mark2web/.drone.yml
Sebastian Frank db248328b9
All checks were successful
the build was successful
website
2019-02-18 18:03:46 +01:00

26 lines
511 B
YAML

workspace:
base: /go
path: src/gitbase.de/apairon/mark2web
pipeline:
build_mark2web:
image: golang:latest
commands:
- ./build.sh
build_website:
image: alpine
commands:
- ls -la
- ./mark2web -version
- ./mark2web -in website -out html -create -logLevel debug
build_docker:
image: docker
commands:
- docker build -t apairon/mark2web .
volumes:
- /var/run/docker.sock:/var/run/docker.sock
when:
branch: master
event: push