-
Notifications
You must be signed in to change notification settings - Fork 603
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ name: Build and Publish on Main Branch | |
on: | ||
push: | ||
branches: | ||
- main | ||
- chore/publish | ||
|
||
jobs: | ||
build-and-publish: | ||
|
@@ -21,10 +21,12 @@ jobs: | |
- name: Install Dependencies | ||
run: npm install | ||
|
||
- name: Update Version | ||
run: | | ||
npm version patch -m "Upgrade to %s" # 可以使用 major、minor 或 patch | ||
git push --follow-tags | ||
# - name: Update Version | ||
# run: | | ||
# git config --local user.email "[email protected]" | ||
# git config --local user.name "GitHub Action" | ||
# npm version patch -m "Upgrade to %s" # 可以使用 major、minor 或 patch | ||
# git push --follow-tags | ||
|
||
- name: Run Build | ||
run: npm run build | ||
|
@@ -33,4 +35,4 @@ jobs: | |
run: npm run pub | ||
env: | ||
# 设置环境变量,如需要的 API 密钥、令牌等 | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@alilc/lowcode-demo", | ||
"version": "1.2.10", | ||
"version": "1.2.12", | ||
"description": "Low-Code Engine 低代码搭建引擎 Demo 项目", | ||
"repository": "[email protected]:alibaba/lowcode-demo.git", | ||
"license": "MIT", | ||
|