mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-05 13:39:24 +08:00
Merge branch 'main' into next
This commit is contained in:
commit
db15393283
15
.github/workflows/manual-release-develop.yml
vendored
15
.github/workflows/manual-release-develop.yml
vendored
@ -59,12 +59,7 @@ jobs:
|
|||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
- name: yarn install and build
|
- name: Checkout
|
||||||
run: |
|
|
||||||
yarn config set registry https://registry.npmjs.org/
|
|
||||||
yarn install
|
|
||||||
yarn build
|
|
||||||
- name: Run release.sh
|
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
cd ./packages/pro-plugins
|
cd ./packages/pro-plugins
|
||||||
@ -79,6 +74,14 @@ jobs:
|
|||||||
git config --global user.name '${{ steps.app-token.outputs.app-slug }}[bot]'
|
git config --global user.name '${{ steps.app-token.outputs.app-slug }}[bot]'
|
||||||
git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com>'
|
git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com>'
|
||||||
echo "packages/pro-plugins" >> .git/info/exclude
|
echo "packages/pro-plugins" >> .git/info/exclude
|
||||||
|
- name: yarn install and build
|
||||||
|
run: |
|
||||||
|
yarn config set registry https://registry.npmjs.org/
|
||||||
|
yarn install
|
||||||
|
yarn build
|
||||||
|
- name: Run release.sh
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
bash release.sh $IS_FEAT
|
bash release.sh $IS_FEAT
|
||||||
env:
|
env:
|
||||||
IS_FEAT: ${{ inputs.is_feat && '--is-feat' || '' }}
|
IS_FEAT: ${{ inputs.is_feat && '--is-feat' || '' }}
|
||||||
|
15
.github/workflows/manual-release-next.yml
vendored
15
.github/workflows/manual-release-next.yml
vendored
@ -104,12 +104,7 @@ jobs:
|
|||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
- name: yarn install and build
|
- name: Checkout
|
||||||
run: |
|
|
||||||
yarn config set registry https://registry.npmjs.org/
|
|
||||||
yarn install
|
|
||||||
yarn build
|
|
||||||
- name: Run release.sh
|
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
cd ./packages/pro-plugins
|
cd ./packages/pro-plugins
|
||||||
@ -124,6 +119,14 @@ jobs:
|
|||||||
git config --global user.name '${{ steps.app-token.outputs.app-slug }}[bot]'
|
git config --global user.name '${{ steps.app-token.outputs.app-slug }}[bot]'
|
||||||
git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com>'
|
git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com>'
|
||||||
echo "packages/pro-plugins" >> .git/info/exclude
|
echo "packages/pro-plugins" >> .git/info/exclude
|
||||||
|
- name: yarn install and build
|
||||||
|
run: |
|
||||||
|
yarn config set registry https://registry.npmjs.org/
|
||||||
|
yarn install
|
||||||
|
yarn build
|
||||||
|
- name: Run release.sh
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
bash release.sh $VERSION $IS_FEAT $ADD_MINOR
|
bash release.sh $VERSION $IS_FEAT $ADD_MINOR
|
||||||
env:
|
env:
|
||||||
PRO_PLUGIN_REPOS: ${{ needs.get-plugins.outputs.beta-plugins }}
|
PRO_PLUGIN_REPOS: ${{ needs.get-plugins.outputs.beta-plugins }}
|
||||||
|
15
.github/workflows/manual-release.yml
vendored
15
.github/workflows/manual-release.yml
vendored
@ -98,12 +98,7 @@ jobs:
|
|||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
- name: yarn install and build
|
- name: Checkout
|
||||||
run: |
|
|
||||||
yarn config set registry https://registry.npmjs.org/
|
|
||||||
yarn install
|
|
||||||
yarn build
|
|
||||||
- name: Run release.sh
|
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
cd ./packages/pro-plugins
|
cd ./packages/pro-plugins
|
||||||
@ -118,6 +113,14 @@ jobs:
|
|||||||
git config --global user.name '${{ steps.app-token.outputs.app-slug }}[bot]'
|
git config --global user.name '${{ steps.app-token.outputs.app-slug }}[bot]'
|
||||||
git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com>'
|
git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com>'
|
||||||
echo "packages/pro-plugins" >> .git/info/exclude
|
echo "packages/pro-plugins" >> .git/info/exclude
|
||||||
|
- name: yarn install and build
|
||||||
|
run: |
|
||||||
|
yarn config set registry https://registry.npmjs.org/
|
||||||
|
yarn install
|
||||||
|
yarn build
|
||||||
|
- name: Run release.sh
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
bash release.sh $IS_FEAT
|
bash release.sh $IS_FEAT
|
||||||
env:
|
env:
|
||||||
PRO_PLUGIN_REPOS: ${{ needs.get-plugins.outputs.rc-plugins }}
|
PRO_PLUGIN_REPOS: ${{ needs.get-plugins.outputs.rc-plugins }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user