mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
70c31d0bec
- Now lib provides cjs format exports and es provides esm format
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
name: Publish to NPM registry
|
|
|
|
on:
|
|
release:
|
|
types: [created]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '12'
|
|
- name: Install dependencies
|
|
run: yarn bootstrap
|
|
- name: Lint
|
|
run: yarn lint
|
|
- name: Test
|
|
run: yarn test
|
|
|
|
publish:
|
|
needs: test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '12'
|
|
registry-url: https://registry.npmjs.com/
|
|
- name: Get version
|
|
run: echo "TAG_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
|
- name: build
|
|
run: yarn fast-build
|
|
env:
|
|
TAG_VERSION: ${{env.TAG_VERSION}}
|
|
- name: generate npm token
|
|
run: echo "//registry.npmjs.com/:_authToken=${{ secrets.NPM_PUBLISH_TOKEN }}" > ./.npmrc
|
|
- name: Publish npm
|
|
run: sh ./scripts/publish.sh
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}
|
|
TAG_VERSION: ${{env.TAG_VERSION}}
|
|
REGISTRY: https://registry.npmjs.com/
|