uhr/.drone.yml
Manuel Friedli da6993b4f9
All checks were successful
continuous-integration/drone/push Build is passing
Add a section for publishing a release to Gitea to the drone config
file. This has not been tested yet!
2021-02-24 21:42:34 +01:00

29 lines
517 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: prepare
image: node:15-alpine
commands:
- npm install
- name: build
image: node:15-alpine
commands:
- npm run build
- name: gitea_release
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea_api_token
base_url: https://gittr.ch
files:
- dist/*
checksum:
- md5
- sha256
- sha512
- adler32
- crc32
when:
event: tag