bird-lg-go/.drone.yml
Simon Marsh 5f9400b9d4
All checks were successful
continuous-integration/drone/push Build is passing
also build docker image
2023-09-25 09:48:02 +01:00

63 lines
1.1 KiB
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
- name: docker
image: plugins/docker
settings:
registry: git.burble.dn42
repo: git.burble.dn42/burble.dn42/bird-lg-go
dockerfile: frontend/Dockerfile
context: frontend/
tags: frontend
username: burble
password:
from_secret: TOKEN
---
kind: secret
name: TOKEN
get:
path: burble.dn42/kv/data/drone/git.burble.dn42
name: artifact-token