34 lines
724 B
YAML
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
|
|
|