26 lines
570 B
YAML
26 lines
570 B
YAML
steps:
|
|
- name: build and package
|
|
image: registry.odit.services/hub/library/node:16-alpine3.14
|
|
commands:
|
|
- apk add git zip -f
|
|
- yarn
|
|
- yarn build
|
|
- yarn build:package
|
|
- name: gitea_release
|
|
image: plugins/gitea-release
|
|
settings:
|
|
title: Release ${DRONE_TAG}
|
|
api_key:
|
|
from_secret: odit-git-bot-apikey
|
|
base_url: https://git.odit.services
|
|
files: linkylinky-chrome.zip
|
|
checksum:
|
|
- md5
|
|
- sha1
|
|
- sha256
|
|
- sha512
|
|
- adler32
|
|
- crc32
|
|
|
|
when:
|
|
event: tag |