bird_exporter/.drone.yml
Simon Marsh 1c1570db05
Some checks failed
continuous-integration/drone/push Build is failing
fix ubuntu
2023-05-27 11:12:21 +01:00

34 lines
724 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:latest
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