pki/.drone.yml
Paul Lecuq a7d4f06285
All checks were successful
continuous-integration/drone/push Build is passing
ready for public beta
2020-11-25 20:36:07 +01:00

36 lines
571 B
YAML

---
kind: pipeline
type: docker
name: default-linux-amd64
steps:
- name: build
image: golang
commands:
- ./ci-build.sh build
environment:
GOOS: linux
GOARCH: amd64
---
kind: pipeline
type: docker
name: gitea-release
steps:
- name: release
image: plugins/gitea-release
settings:
base_url: https://git.paulbsd.com
api_key:
from_secret: gitea_token
files: "*.tar.gz"
title: ./VERSION
checksum:
- sha256
- sha512
when:
event: tag
depends_on:
- default-linux-amd64