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

88 lines
2.1 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@v4
with:
fetch-depth: 0
- name: Add dev branch
run: git branch dev origin/dev
- name: Setup pnpm
uses: pnpm/action-setup@v4
2022-02-21 16:11:17 +08:00
- name: Setup node
2024-10-27 14:23:24 +08:00
uses: actions/setup-node@v4
2022-02-21 16:11:17 +08:00
with:
node-version: 20
registry-url: https://registry.npmjs.com/
2022-09-22 09:04:40 +08:00
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
2022-09-22 09:04:40 +08:00
2024-10-27 14:23:24 +08:00
- uses: actions/cache@v4
2022-09-22 09:04:40 +08:00
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
2022-02-21 16:11:17 +08:00
- name: Install dependencies
2021-10-16 20:58:41 +08:00
run: pnpm i --frozen-lockfile
2022-09-22 09:04:40 +08:00
- name: Lint
run: pnpm lint
2022-09-22 09:04:40 +08:00
- name: Test
run: pnpm test
2020-12-27 14:16:18 +08:00
publish:
needs: test
runs-on: ubuntu-latest
2023-08-08 21:44:01 +08:00
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
2022-09-22 09:04:40 +08:00
2024-10-27 14:23:24 +08:00
- uses: actions/setup-node@v4
with:
node-version: 20
2020-12-24 01:15:35 +08:00
registry-url: https://registry.npmjs.com/
2022-09-22 09:04:40 +08:00
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Get version
run: echo "TAG_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
2022-09-22 09:04:40 +08:00
- name: Get git head
run: echo "GIT_HEAD=${GITHUB_SHA}" >> $GITHUB_ENV
2022-09-22 09:04:40 +08:00
- name: Gen npmrc
run: echo "//registry.npmjs.com/:_authToken=${{ secrets.NPM_PUBLISH_TOKEN }}" >> ./.npmrc
2022-09-22 09:04:40 +08:00
2023-08-08 21:44:01 +08:00
- name: Update npm
2023-09-14 18:53:10 +08:00
run: npm install npm@9 -g
2023-08-08 21:44:01 +08:00
- 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/
FORCE_COLOR: 2
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2022-06-08 15:59:13 +08:00
NODE_OPTIONS: --max-old-space-size=4096