simpbot/.drone.yml
Steve 010070e6aa
All checks were successful
continuous-integration/drone/tag Build is passing
update ci
2021-08-07 13:12:01 -04:00

29 lines
454 B
YAML

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