woodpecker/.drone.yml

65 lines
1.3 KiB
YAML
Raw Normal View History

clone:
path: github.com/drone/drone
build:
2015-09-30 01:21:17 +00:00
image: golang:1.5
2015-09-30 21:00:48 +00:00
environment:
- GO15VENDOREXPERIMENT=1
commands:
2015-09-30 21:00:48 +00:00
- /bin/bash contrib/setup-sqlite.sh 1> /dev/null
- /bin/bash contrib/setup-sassc.sh 1> /dev/null
2015-10-01 05:16:42 +00:00
- make deps gen test
2015-10-07 20:47:16 +00:00
- make build build_static deb docs
2015-10-01 05:16:42 +00:00
publish:
s3:
acl: public-read
region: us-east-1
bucket: downloads.drone.io
access_key: $$AWS_KEY
secret_key: $$AWS_SECRET
source: contrib/debian/drone.deb
target: $$BRANCH/
when:
repo: drone/drone
2015-10-16 22:02:50 +00:00
# sync the documentation with the s3 bucket
s3_sync:
acl: public-read
region: us-east-1
bucket: readme.drone.io
access_key: $$AWS_KEY
secret_key: $$AWS_SECRET
source: /drone/tmp/
target: /
exclude: "*.svg"
when:
repo: drone/drone
branch: "0.4.0"
s3_sync:
2015-10-07 20:47:16 +00:00
acl: public-read
region: us-east-1
bucket: readme.drone.io
access_key: $$AWS_KEY
secret_key: $$AWS_SECRET
source: /drone/tmp/
target: /
2015-10-16 22:02:50 +00:00
exclude: "*"
include: "**.svg"
content_type: "image/svg+xml"
2015-10-07 20:47:16 +00:00
when:
repo: drone/drone
branch: "0.4.0"
docker:
username: drone
password: $$DOCKER_PASS
email: $$DOCKER_EMAIL
repo: drone/drone
2015-10-01 07:39:30 +00:00
tag: "0.4"
when:
repo: drone/drone
branch: 0.4.0