All checks were successful
continuous-integration/drone/push Build is passing
32 lines
536 B
YAML
32 lines
536 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
image: golang
|
|
environment:
|
|
CGO_ENABLED: 0
|
|
commands:
|
|
- go vet
|
|
- go build
|
|
|
|
- name: upload artifact
|
|
image: git.burble.dn42/burble.dn42/drone-gitea-pkg-plugin:latest
|
|
settings:
|
|
token:
|
|
from_secret: TOKEN
|
|
version: .version
|
|
artifact: nomad-driver-containerd
|
|
package: nomad-driver-containerd
|
|
owner: burble
|
|
|
|
---
|
|
kind: secret
|
|
name: TOKEN
|
|
get:
|
|
path: burble.dn42/kv/data/drone/git.burble.dn42
|
|
name: artifact-token
|
|
|