dn42grcd/.drone.yml
Simon Marsh bcfb5828bd
All checks were successful
continuous-integration/drone/push Build is passing
Update drone pipeline
2021-12-30 10:15:48 +00:00

51 lines
886 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: golang
environment:
CGO_ENABLED: 0
commands:
- go vet
- go build
- name: stage
image: alpine
commands:
- mkdir artifacts
- mv dn42grcd artifacts/
- tar -cvzf artifacts/StaticRoot.tar.gz StaticRoot
- name: upload
image: plugins/s3
settings:
bucket: artifacts
access_key:
from_secret: MINIO_ACCESS_KEY
secret_key:
from_secret: MINIO_SECRET_KEY
endpoint: https://minio.burble.dn42
region: uk-lon3
path_style: true
source: artifacts/*
strip_prefix: artifacts/
target: /dn42grcd/${DRONE_BRANCH}
---
kind: secret
name: MINIO_ACCESS_KEY
get:
path: burble.dn42/kv/data/drone/minio
name: ACCESS_KEY
---
kind: secret
name: MINIO_SECRET_KEY
get:
path: burble.dn42/kv/data/drone/minio
name: SECRET_KEY