forked from element-plus/element-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 1.19 KB
/
publish-pr-commit-pkg.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Publish PR Commit Pkg
on:
push:
branches:
- dev
tags:
- '!**'
pull_request:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.repository == 'element-plus/element-plus' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Get Latest Release Version
id: get_release
run: |
LATEST_VERSION=$(curl -s https://api.github.com/repos/element-plus/element-plus/releases/latest | jq -r '.tag_name')
echo "LATEST_VERSION=${LATEST_VERSION}" >> $GITHUB_ENV
- name: Update package.json version
run: |
cd dist/element-plus
ls -la
jq --arg newVersion "$LATEST_VERSION" '.version = $newVersion' package.json > tmp.json && mv tmp.json package.json
- name: Publish
run: |
cd dist/element-plus
pnpx pkg-pr-new publish