lemmy-js-client/.drone.yml
2022-12-11 12:00:05 -05:00

33 lines
573 B
YAML

---
kind: pipeline
name: amd64
platform:
os: linux
arch: amd64
steps:
- name: yarn
image: node:17-alpine
commands:
- yarn
- name: yarn lint
image: node:17-alpine
commands:
- yarn lint
- name: npm publish
image: node:17-alpine
commands:
- echo "//registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN" >> .npmrc
- echo "email = $NPM_EMAIL" >> ~/.npmrc
- npm publish
environment:
NPM_AUTH_TOKEN:
from_secret: npm_token
NPM_EMAIL: tyhou13@gmx.com
when:
ref:
- refs/tags/*