k3s/.drone.yml

56 lines
1.1 KiB
YAML
Raw Normal View History

2019-01-01 08:23:01 +00:00
---
pipeline:
build:
privileged: true
image: rancher/dapper:1.11.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- dapper ci
stage-binaries:
image: rancher/dapper:1.11.2
commands:
2019-01-09 16:54:15 +00:00
- cp -f ./bin/k3s-incluster ./package/k3s
2019-01-01 08:23:01 +00:00
when:
branch: master
event: tag
publish-image:
image: plugins/docker
dockerfile: package/Dockerfile
2019-01-09 16:54:15 +00:00
repo: rancher/k3s
2019-01-01 08:23:01 +00:00
context: package/
tag: ${DRONE_TAG}
secrets: [docker_username, docker_password]
when:
branch: master
event: tag
github_binary_prerelease:
image: plugins/github-release
prerelease: true
files:
- dist/artifacts/*
checksum:
- sha256
secrets: [github_token]
when:
branch: master
event: tag
ref:
include: [ refs/tags/*rc* ]
github_binary_release:
image: plugins/github-release
files:
- dist/artifacts/*
checksum:
- sha256
secrets: [github_token]
when:
branch: master
event: tag
ref:
exclude: [ refs/tags/*rc* ]