All checks were successful
continuous-integration/drone/push Build is passing
56 lines
976 B
YAML
56 lines
976 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
|
|
- name: build frontend
|
|
image: golang
|
|
environment:
|
|
CGO_ENABLED: 0
|
|
commands:
|
|
- cd frontend
|
|
- go vet
|
|
- go build
|
|
|
|
- name: build proxy
|
|
image: golang
|
|
environment:
|
|
CGO_ENABLED: 0
|
|
commands:
|
|
- cd proxy
|
|
- go vet
|
|
- go build
|
|
|
|
- name: stage
|
|
image: alpine
|
|
commands:
|
|
- mkdir artifacts
|
|
- mv frontend/frontend artifacts/
|
|
- mv proxy/proxy artifacts/
|
|
- tar -cvzf bird-lg-go.bdn42.tar.gz -C artifacts .
|
|
|
|
- name: upload artifacts
|
|
image: git.burble.dn42/burble.dn42/drone-gitea-pkg-plugin:latest
|
|
settings:
|
|
token:
|
|
from_secret: TOKEN
|
|
version: RELEASE
|
|
artifact: bird-lg-go.bdn42.tar.gz
|
|
package: bird-lg-go
|
|
owner: burble.dn42
|
|
|
|
---
|
|
kind: secret
|
|
name: TOKEN
|
|
get:
|
|
path: burble.dn42/kv/data/drone/git.burble.dn42
|
|
name: artifact-token
|
|
|
|
---
|
|
kind: signature
|
|
hmac: c784d52aa3d2c36eb2d18d1262c45296aa17332e181a303deb9c36bf52066e58
|
|
|
|
...
|