Manuel Friedli
da6993b4f9
All checks were successful
continuous-integration/drone/push Build is passing
file. This has not been tested yet!
29 lines
517 B
YAML
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
|