mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 10:09:55 +00:00
67 lines
1.1 KiB
YAML
67 lines
1.1 KiB
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
|
|
image: plugins/npm
|
|
settings:
|
|
username:
|
|
from_secret: npm_username
|
|
password:
|
|
from_secret: npm_password
|
|
email: tyhou13@gmx.com
|
|
registry: //registry.npmjs.org/:_authToken=$NPM_TOKEN
|
|
token:
|
|
from_secret: npm_token
|
|
environment:
|
|
NPM_TOKEN:
|
|
from_secret: npm_token
|
|
when:
|
|
ref:
|
|
- refs/tags/*
|
|
# - 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
|
|
|
|
---
|
|
kind: pipeline
|
|
name: arm64
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
|
|
- name: yarn
|
|
image: node:17-alpine
|
|
commands:
|
|
- yarn
|
|
|
|
- name: yarn lint
|
|
image: node:17-alpine
|
|
commands:
|
|
- yarn lint
|