You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
351 B
25 lines
351 B
5 years ago
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: build
|
||
|
image: node
|
||
|
pull: always
|
||
|
commands:
|
||
|
- yarn
|
||
|
- yarn run bin
|
||
|
when:
|
||
|
event: tag
|
||
|
|
||
|
- name: publish
|
||
|
image: plugins/github-release
|
||
|
pull: always
|
||
|
settings:
|
||
|
api_key:
|
||
|
from_secret: github
|
||
|
files: bin/*
|
||
|
checksum:
|
||
|
- sha512
|
||
|
note: CHANGELOG.md
|
||
|
when:
|
||
|
event: tag
|