mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 22:49:28 -07:00
24 lines
362 B
YAML
24 lines
362 B
YAML
|
pipeline:
|
||
|
prepare:
|
||
|
when:
|
||
|
event: tag
|
||
|
image: node
|
||
|
commands:
|
||
|
- yarn --pure-lockfile
|
||
|
- yarn run prepare
|
||
|
|
||
|
publish-npm:
|
||
|
when:
|
||
|
event: tag
|
||
|
image: plugins/npm
|
||
|
settings:
|
||
|
username: yarmo_eu
|
||
|
token:
|
||
|
from_secret: npm_token
|
||
|
email:
|
||
|
from_secret: npm_email
|
||
|
|
||
|
branches: main
|
||
|
|
||
|
depends_on:
|
||
|
- test
|