pipeline: deploy: when: event: tag tag: v* image: node:lts-alpine commands: - echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" > .npmrc - yarn publish --non-interactive secrets: [ node_auth_token ] depends_on: - lint