element-plus/.github/workflows/publish-npm.yml

53 lines
1.4 KiB
YAML
Raw Normal View History

name: Publish to NPM registry
on:
release:
types: [created]
jobs:
2020-12-27 14:16:18 +08:00
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
2021-09-27 12:16:49 +08:00
node-version: '16'
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 6.15.1
- name: Install dependencies
2021-09-26 01:29:07 +08:00
run: pnpm i
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
2020-12-27 14:16:18 +08:00
publish:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
2021-09-27 12:16:49 +08:00
node-version: '16'
2020-12-24 01:15:35 +08:00
registry-url: https://registry.npmjs.com/
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 6.15.1
- name: Get version
run: echo "TAG_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Get git head
run: echo "GIT_HEAD=${GITHUB_SHA}" >> $GITHUB_ENV
- name: Gen npmrc
run: echo "//registry.npmjs.com/:_authToken=${{ secrets.NPM_PUBLISH_TOKEN }}" >> ./.npmrc
- name: Build&publish
2021-09-15 01:45:45 +08:00
run: sh ./scripts/publish.sh
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}
TAG_VERSION: ${{env.TAG_VERSION}}
GIT_HEAD: ${{env.GIT_HEAD}}
2020-12-23 23:15:59 +08:00
REGISTRY: https://registry.npmjs.com/