flaschengeist-frontend/.woodpecker/deploy.yml

16 lines
305 B
YAML
Raw Normal View History

2021-12-14 14:47:48 +00:00
pipeline:
deploy:
when:
event: tag
tag: @flaschengeist/api-v*
image: node:lts-alpine
commands:
- cd api
- echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" > .npmrc
- yarn publish --non-interactive
secrets: [ node_auth_token ]
depends_on:
- lint