bird_exporter/.drone.yml
Simon Marsh 2fcd228f8b
Some checks reported errors
continuous-integration/drone Build encountered an error
update drone
2023-05-27 11:10:13 +01:00

34 lines
725 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: golang
environment:
CGO_ENABLED: 0
commands:
- go build
- name: extract version
image: ubuntu/lastest
commands:
- grep 'const version string' main.go | tr -d ' "' | cut -d'=' -f2 > .version
- name: upload artifact
image: curlimages/curl:latest
environment:
TOKEN:
from_secret: TOKEN
commands:
- sh -c 'VERSION=$(cat .version); curl --user "burble:${TOKEN}" --upload-file="bird_exporter" "https://git.burble.dn42/api/packages/burble/generic/bird_exporter/${VERSION}/bird_exporter"'
---
kind: secret
name: TOKEN
get:
path: burble.dn42/kv/data/drone/git.burble.dn42
name: artifact-token