2023-12-13 09:06:59 +00:00
|
|
|
name: manual-release
|
2024-02-08 03:35:59 +00:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2024-05-09 07:42:08 +00:00
|
|
|
on:
|
2023-12-13 09:06:59 +00:00
|
|
|
workflow_dispatch:
|
2024-08-25 14:07:44 +00:00
|
|
|
inputs:
|
|
|
|
is_feat:
|
|
|
|
description: 'is feat'
|
|
|
|
type: boolean
|
2024-08-06 09:52:23 +00:00
|
|
|
|
2023-12-13 09:06:59 +00:00
|
|
|
jobs:
|
2024-08-26 15:40:48 +00:00
|
|
|
app-token:
|
|
|
|
uses: nocobase/nocobase/.github/workflows/get-nocobase-app-token.yml@main
|
|
|
|
secrets: inherit
|
|
|
|
pre-merge-main-into-next:
|
2024-07-16 07:50:21 +00:00
|
|
|
runs-on: ubuntu-latest
|
2024-08-26 15:40:48 +00:00
|
|
|
needs: app-token
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
repo:
|
|
|
|
- 'nocobase'
|
|
|
|
- 'pro-plugins'
|
|
|
|
- ${{ fromJSON(vars.PRO_PLUGIN_REPOS) }}
|
2024-07-16 07:50:21 +00:00
|
|
|
steps:
|
2024-08-26 15:40:48 +00:00
|
|
|
- name: Decrypt app token
|
|
|
|
id: app-token
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
ENCRYPTED_SECRET=${{ needs.app-token.outputs.token }};
|
2024-08-27 11:50:01 +00:00
|
|
|
APP_TOKEN=$(echo -n "$ENCRYPTED_SECRET" | base64 --decode | openssl enc -aes-256-cbc -pbkdf2 -d -salt -k "${{ secrets.APP_TOKEN_ENCRYPTION_PASSWORD }}");
|
2024-08-26 15:40:48 +00:00
|
|
|
echo "token=$APP_TOKEN" >> $GITHUB_OUTPUT
|
|
|
|
- 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 '${{ needs.app-token.outputs.app-slug }}[bot]'
|
|
|
|
git config --global user.email '${{ needs.app-token.outputs.user-id }}+${{ needs.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:
|
|
|
|
- app-token
|
|
|
|
- pre-merge-main-into-next
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Decrypt app token
|
|
|
|
id: app-token
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
ENCRYPTED_SECRET=${{ needs.app-token.outputs.token }};
|
2024-08-27 11:50:01 +00:00
|
|
|
APP_TOKEN=$(echo -n "$ENCRYPTED_SECRET" | base64 --decode | openssl enc -aes-256-cbc -pbkdf2 -d -salt -k "${{ secrets.APP_TOKEN_ENCRYPTION_PASSWORD }}");
|
2024-08-26 15:40:48 +00:00
|
|
|
echo "token=$APP_TOKEN" >> $GITHUB_OUTPUT
|
2024-07-16 07:50:21 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
repository: nocobase/nocobase
|
2024-08-26 15:40:48 +00:00
|
|
|
token: ${{ steps.app-token.outputs.token }}
|
2024-07-16 07:50:21 +00:00
|
|
|
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
|
2024-08-26 15:40:48 +00:00
|
|
|
token: ${{ steps.app-token.outputs.token }}
|
2024-07-16 07:50:21 +00:00
|
|
|
persist-credentials: true
|
2024-08-26 15:40:48 +00:00
|
|
|
- name: Clone pro repos
|
|
|
|
shell: bash
|
2024-07-16 07:50:21 +00:00
|
|
|
run: |
|
2024-08-26 15:40:48 +00:00
|
|
|
for repo in ${{ join(fromJSON(vars.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
|
2024-05-09 07:42:08 +00:00
|
|
|
- name: Set Node.js 18
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 18
|
2024-05-09 15:12:42 +00:00
|
|
|
- name: Install Lerna
|
|
|
|
run: npm install -g lerna@4 auto-changelog@2
|
2024-05-09 07:42:08 +00:00
|
|
|
- name: Run release.sh
|
2024-08-26 15:40:48 +00:00
|
|
|
shell: bash
|
2024-05-09 07:42:08 +00:00
|
|
|
run: |
|
2024-07-16 10:58:20 +00:00
|
|
|
cd ./packages/pro-plugins
|
|
|
|
git checkout main
|
2024-08-26 15:40:48 +00:00
|
|
|
for repo in ${{ join(fromJSON(vars.PRO_PLUGIN_REPOS), ' ') }}
|
|
|
|
do
|
|
|
|
echo "@nocobase/$repo" >> .git/info/exclude
|
|
|
|
done
|
|
|
|
echo "$(<.git/info/exclude )"
|
2024-07-16 10:58:20 +00:00
|
|
|
cd ./../..
|
2024-07-16 08:04:28 +00:00
|
|
|
git checkout main
|
2024-08-26 15:40:48 +00:00
|
|
|
git config --global user.name '${{ needs.app-token.outputs.app-slug }}[bot]'
|
|
|
|
git config --global user.email '${{ needs.app-token.outputs.user-id }}+${{ needs.app-token.outputs.app-slug }}[bot]@users.noreply.github.com>'
|
|
|
|
echo "packages/pro-plugins" >> .git/info/exclude
|
2024-06-12 03:37:23 +00:00
|
|
|
bash release.sh $IS_FEAT
|
|
|
|
env:
|
2024-08-25 14:07:44 +00:00
|
|
|
IS_FEAT: ${{ inputs.is_feat && '--is-feat' || '' }}
|
2024-08-26 15:40:48 +00:00
|
|
|
PRO_PLUGIN_REPOS: ${{ vars.PRO_PLUGIN_REPOS }}
|
2024-08-26 20:56:27 +00:00
|
|
|
- name: Push and merge into next
|
2024-08-26 15:40:48 +00:00
|
|
|
run: |
|
|
|
|
for repo in ${{ join(fromJSON(vars.PRO_PLUGIN_REPOS), ' ') }}
|
|
|
|
do
|
|
|
|
cd ./packages/pro-plugins/@nocobase/$repo
|
|
|
|
git push origin main --atomic --tags
|
2024-08-26 20:56:27 +00:00
|
|
|
git checkout next
|
|
|
|
git merge -X ours main --no-edit
|
|
|
|
git push origin next --tags --atomic
|
2024-08-26 15:40:48 +00:00
|
|
|
cd ../../../../
|
|
|
|
done
|
2024-08-26 20:56:27 +00:00
|
|
|
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
|
2024-07-16 07:50:21 +00:00
|
|
|
git checkout next
|
|
|
|
git merge -X ours main --no-edit
|
2024-08-26 15:40:48 +00:00
|
|
|
git push origin next --tags --atomic
|