website/.drone.yml

38 lines
700 B
YAML
Raw Normal View History

2016-11-08 18:13:24 +05:30
workspace:
path: src
pipeline:
build:
image: webhippie/hugo:latest
2016-11-10 16:35:01 +05:30
pull: true
2016-11-08 18:13:24 +05:30
commands:
- make trans-copy
2016-12-12 19:06:33 +05:30
- make clean
2016-11-10 16:31:21 +05:30
- make build
2016-11-08 18:13:24 +05:30
docker:
image: plugins/docker
pull: true
2016-11-08 18:13:24 +05:30
repo: gitea/website
tags: [ '${DRONE_BRANCH##release/v}' ]
2016-11-08 18:13:24 +05:30
when:
event: [ push ]
branch: [ release/* ]
2016-11-08 18:13:24 +05:30
docker:
image: plugins/docker
pull: true
2016-11-08 18:13:24 +05:30
repo: gitea/website
tags: [ 'latest' ]
when:
event: [ push ]
branch: [ master ]
2016-11-08 18:13:24 +05:30
discord:
image: appleboy/drone-discord
webhook_id: ${WEBHOOK_ID}
webhook_token: ${WEBHOOK_TOKEN}
when:
event: [ push, tag, pull_request ]
status: [ changed, failure ]