chore: update

This commit is contained in:
xilesun 2024-11-08 15:00:11 +08:00
parent 3b1c1d558a
commit c43cabe6c6

View File

@ -111,7 +111,6 @@ jobs:
- name: Release major (main)
shell: bash
run: |
git checkout main
bash release.sh --is-feat --is-beta
env:
PRO_PLUGIN_REPOS: ${{ vars.NEXT_PRO_PLUGIN_REPOS }}
@ -119,6 +118,15 @@ jobs:
- name: Release major (next)
shell: bash
run: |
for repo in ${{ join(fromJSON(vars.NEXT_PRO_PLUGIN_REPOS), ' ') }} ${{ join(fromJSON(vars.CUSTOM_PRO_PLUGIN_REPOS), ' ') }}
do
cd ./packages/pro-plugins/@nocobase/$repo
git checkout next
cd ../../../../
done
cd ./packages/pro-plugins
git checkout next
cd ../../
git checkout next
bash release.sh --is-feat
env:
@ -130,15 +138,12 @@ jobs:
for repo in ${{ join(fromJSON(vars.NEXT_PRO_PLUGIN_REPOS), ' ') }} ${{ join(fromJSON(vars.CUSTOM_PRO_PLUGIN_REPOS), ' ') }}
do
cd ./packages/pro-plugins/@nocobase/$repo
git checkout next
git merge -X ours main --no-edit
cd ../../../../
done
cd ./packages/pro-plugins
git checkout next
git merge -X ours main --no-edit
cd ../../
git checkout next
git merge -X ours main --no-edit
# - name: Push
# shell: bash