mirror of
https://github.com/nocobase/nocobase
synced 2024-11-14 16:34:14 +00:00
fix(ci): release error (#5193)
* fix(ci): release error * chore: update
This commit is contained in:
parent
a0fb3a448d
commit
1a1c8101f6
1
.github/workflows/manual-release.yml
vendored
1
.github/workflows/manual-release.yml
vendored
@ -114,6 +114,7 @@ jobs:
|
||||
env:
|
||||
IS_FEAT: ${{ inputs.is_feat && '--is-feat' || '' }}
|
||||
PRO_PLUGIN_REPOS: ${{ vars.PRO_PLUGIN_REPOS }}
|
||||
CUSTOM_PRO_PLUGIN_REPOS: ${{ vars.CUSTOM_PRO_PLUGIN_REPOS }}
|
||||
- name: Push and merge into next
|
||||
run: |
|
||||
for repo in ${{ join(fromJSON(vars.PRO_PLUGIN_REPOS), ' ') }} ${{ join(fromJSON(vars.CUSTOM_PRO_PLUGIN_REPOS), ' ') }}
|
||||
|
@ -19,6 +19,13 @@ echo $PRO_PLUGIN_REPOS | jq -r '.[]' | while read i; do
|
||||
git tag v$(jq -r '.version' ../../../../lerna.json)
|
||||
cd ../../../../
|
||||
done
|
||||
echo $CUSTOM_PRO_PLUGIN_REPOS | jq -r '.[]' | while read i; do
|
||||
cd ./packages/pro-plugins/@nocobase/$i
|
||||
git add .
|
||||
git commit -m "chore(versions): 😊 publish v$(jq -r '.version' ../../../../lerna.json)"
|
||||
git tag v$(jq -r '.version' ../../../../lerna.json)
|
||||
cd ../../../../
|
||||
done
|
||||
cd ./packages/pro-plugins
|
||||
git add .
|
||||
git commit -m "chore(versions): 😊 publish v$(jq -r '.version' ../../lerna.json)"
|
||||
|
Loading…
Reference in New Issue
Block a user