guildgate/.drone.yml
Steve f8a51fad3b
Some checks failed
continuous-integration/drone Build is passing
continuous-integration/drone/tag Build is failing
better release system
2021-08-07 15:00:42 -04:00

32 lines
510 B
YAML

kind: pipeline
name: default
steps:
- name: build
image: golang
commands:
- make
- name: create release tar
image: golang
commands:
- mkdir dist build
- make install
- tar -czf dist/release-$DRONE_TAG-$DRONE_STAGE_ARCH.tar.gz build/*
when:
event: tag
environment:
DESTDIR: build
- name: release
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea_token
files:
- dist/*
base_url: https://git.saintnet.tech
when:
event: tag