mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 11:46:46 +00:00
1a1c8101f6
* fix(ci): release error * chore: update
139 lines
5.3 KiB
YAML
139 lines
5.3 KiB
YAML
name: manual-release
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
is_feat:
|
|
description: 'is feat'
|
|
type: boolean
|
|
|
|
jobs:
|
|
pre-merge-main-into-next:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
repo:
|
|
- 'nocobase'
|
|
- 'pro-plugins'
|
|
- ${{ fromJSON(vars.PRO_PLUGIN_REPOS) }}
|
|
- ${{ fromJSON(vars.CUSTOM_PRO_PLUGIN_REPOS) }}
|
|
steps:
|
|
- uses: actions/create-github-app-token@v1
|
|
id: app-token
|
|
with:
|
|
app-id: ${{ vars.NOCOBASE_APP_ID }}
|
|
private-key: ${{ secrets.NOCOBASE_APP_PRIVATE_KEY }}
|
|
repositories: nocobase,pro-plugins,${{ join(fromJSON(vars.PRO_PLUGIN_REPOS), ',') }},${{ join(fromJSON(vars.CUSTOM_PRO_PLUGIN_REPOS), ',') }}
|
|
skip-token-revoke: true
|
|
- name: Get GitHub App User ID
|
|
id: get-user-id
|
|
run: echo "user-id=$(gh api "/users/${{ steps.app-token.outputs.app-slug }}[bot]" --jq .id)" >> "$GITHUB_OUTPUT"
|
|
env:
|
|
GH_TOKEN: ${{ steps.app-token.outputs.token }}
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
# ref: 'main'
|
|
repository: nocobase/${{ matrix.repo }}
|
|
fetch-depth: 0
|
|
token: ${{ steps.app-token.outputs.token }}
|
|
- name: main -> next (nocobase/${{ matrix.repo }})
|
|
run: |
|
|
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 checkout main
|
|
git pull origin main
|
|
git checkout next
|
|
git merge main
|
|
git push origin next --tags --atomic
|
|
update-version:
|
|
needs:
|
|
- pre-merge-main-into-next
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/create-github-app-token@v1
|
|
id: app-token
|
|
with:
|
|
app-id: ${{ vars.NOCOBASE_APP_ID }}
|
|
private-key: ${{ secrets.NOCOBASE_APP_PRIVATE_KEY }}
|
|
repositories: nocobase,pro-plugins,${{ join(fromJSON(vars.PRO_PLUGIN_REPOS), ',') }},${{ join(fromJSON(vars.CUSTOM_PRO_PLUGIN_REPOS), ',') }}
|
|
skip-token-revoke: true
|
|
- name: Get GitHub App User ID
|
|
id: get-user-id
|
|
run: echo "user-id=$(gh api "/users/${{ steps.app-token.outputs.app-slug }}[bot]" --jq .id)" >> "$GITHUB_OUTPUT"
|
|
env:
|
|
GH_TOKEN: ${{ steps.app-token.outputs.token }}
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: nocobase/nocobase
|
|
token: ${{ steps.app-token.outputs.token }}
|
|
persist-credentials: true
|
|
fetch-depth: 0
|
|
- name: Checkout pro-plugins
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: nocobase/pro-plugins
|
|
path: packages/pro-plugins
|
|
fetch-depth: 0
|
|
token: ${{ steps.app-token.outputs.token }}
|
|
persist-credentials: true
|
|
- name: Clone pro repos
|
|
shell: bash
|
|
run: |
|
|
for repo in ${{ join(fromJSON(vars.PRO_PLUGIN_REPOS), ' ') }} ${{ join(fromJSON(vars.CUSTOM_PRO_PLUGIN_REPOS), ' ') }}
|
|
do
|
|
git clone -b main https://x-access-token:${{ steps.app-token.outputs.token }}@github.com/nocobase/$repo.git packages/pro-plugins/@nocobase/$repo
|
|
done
|
|
- name: Set Node.js 18
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- name: Install Lerna
|
|
run: npm install -g lerna@4 auto-changelog@2
|
|
- name: Run release.sh
|
|
shell: bash
|
|
run: |
|
|
cd ./packages/pro-plugins
|
|
git checkout main
|
|
for repo in ${{ join(fromJSON(vars.PRO_PLUGIN_REPOS), ' ') }} ${{ join(fromJSON(vars.CUSTOM_PRO_PLUGIN_REPOS), ' ') }}
|
|
do
|
|
echo "@nocobase/$repo" >> .git/info/exclude
|
|
done
|
|
echo "$(<.git/info/exclude )"
|
|
cd ./../..
|
|
git checkout main
|
|
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>'
|
|
echo "packages/pro-plugins" >> .git/info/exclude
|
|
bash release.sh $IS_FEAT
|
|
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), ' ') }}
|
|
do
|
|
cd ./packages/pro-plugins/@nocobase/$repo
|
|
git push origin main --atomic --tags
|
|
git checkout next
|
|
git merge -X ours main --no-edit
|
|
git push origin next --tags --atomic
|
|
cd ../../../../
|
|
done
|
|
cd ./packages/pro-plugins
|
|
git push origin main --atomic --tags
|
|
git checkout next
|
|
git merge -X ours main --no-edit
|
|
git push origin next --tags --atomic
|
|
cd ../../
|
|
git push origin main --atomic --tags
|
|
git checkout next
|
|
git merge -X ours main --no-edit
|
|
git push origin next --tags --atomic
|