mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
workflow: set up continuous release with pkg.pr.new (#17946)
* ci: add pkg-pr * ci: update pkg-pr * ci: update pkg-pr * ci: update pkg-pr * ci: update pkg-pr * ci: update pkg-pr * ci: update pkg-pr * ci: update pkg-pr * chore: back package.json * chore: change file name * chore: change ci name * ci: update actions version * ci: add release-version
This commit is contained in:
parent
cbaa753158
commit
1a5b5c4f2b
51
.github/workflows/pkg-pr-new.yml
vendored
Normal file
51
.github/workflows/pkg-pr-new.yml
vendored
Normal file
@ -0,0 +1,51 @@
|
||||
name: 'pkg-pr-new'
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- dev
|
||||
tags:
|
||||
- '!**'
|
||||
pull_request:
|
||||
branches:
|
||||
- dev
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
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
|
||||
with:
|
||||
version: 8.14.1
|
||||
|
||||
- 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
|
Loading…
Reference in New Issue
Block a user