simpbot/.drone.yml
Steve 78881a2ebc
All checks were successful
continuous-integration/drone/tag Build is passing
add deploy script
2021-08-07 13:33:29 -04:00

29 lines
490 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-DRONE_STAGE_ARCH.tar.gz init/simpbot.service config.yaml.sample 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