mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 13:46:45 +00:00
48f1827f94
Some checks are pending
Build docker image / build-and-push (push) Waiting to run
Build pro image / build-and-push (push) Waiting to run
Deploy client docs / Build (push) Waiting to run
E2E / Build (push) Waiting to run
E2E / Core and plugins (push) Blocked by required conditions
E2E / plugin-workflow (push) Blocked by required conditions
E2E / plugin-workflow-approval (push) Blocked by required conditions
E2E / plugin-data-source-main (push) Blocked by required conditions
E2E / Comment on PR (push) Blocked by required conditions
NocoBase backend test / sqlite-test (20, false) (push) Waiting to run
NocoBase backend test / sqlite-test (20, true) (push) Waiting to run
NocoBase backend test / postgres-test (public, 20, nocobase, false) (push) Waiting to run
NocoBase backend test / postgres-test (public, 20, nocobase, true) (push) Waiting to run
NocoBase backend test / postgres-test (public, 20, public, false) (push) Waiting to run
NocoBase backend test / postgres-test (public, 20, public, true) (push) Waiting to run
NocoBase backend test / postgres-test (user_schema, 20, nocobase, false) (push) Waiting to run
NocoBase backend test / postgres-test (user_schema, 20, nocobase, true) (push) Waiting to run
NocoBase backend test / postgres-test (user_schema, 20, public, false) (push) Waiting to run
NocoBase backend test / postgres-test (user_schema, 20, public, true) (push) Waiting to run
NocoBase backend test / mysql-test (20, false) (push) Waiting to run
NocoBase backend test / mysql-test (20, true) (push) Waiting to run
NocoBase backend test / mariadb-test (20, false) (push) Waiting to run
NocoBase backend test / mariadb-test (20, true) (push) Waiting to run
NocoBase frontEnd test / frontend-test (18) (push) Waiting to run
Test on Windows / build (push) Waiting to run
* chore(ci): optimize * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update
161 lines
6.7 KiB
YAML
161 lines
6.7 KiB
YAML
name: Release next
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish-npm:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set Node.js 18
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- 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.NEXT_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
|
|
ref: next
|
|
token: ${{ steps.app-token.outputs.token }}
|
|
persist-credentials: true
|
|
fetch-depth: 0
|
|
- name: Send curl request and parse response
|
|
env:
|
|
PKG_USERNAME: ${{ secrets.PKG_USERNAME }}
|
|
PKG_PASSWORD: ${{ secrets.PKG_PASSWORD }}
|
|
run: |
|
|
mkdir git-ci-cache
|
|
apt-get update && apt-get install -y jq gh
|
|
response1=$(curl -s 'https://pkg.nocobase.com/-/verdaccio/sec/login' \
|
|
-H 'content-type: application/json' \
|
|
--data-raw '{"username":"'$PKG_USERNAME'","password":"'$PKG_PASSWORD'"}')
|
|
token1=$(echo $response1 | jq -r '.token')
|
|
response2=$(curl -s 'https://pkg-src.nocobase.com/-/verdaccio/sec/login' \
|
|
-H 'content-type: application/json' \
|
|
--data-raw '{"username":"'$PKG_USERNAME'","password":"'$PKG_PASSWORD'"}')
|
|
token2=$(echo $response2 | jq -r '.token')
|
|
echo "PKG_NOCOBASE_TOKEN=$token1" >> $GITHUB_ENV
|
|
echo "PKG_SRC_NOCOBASE_TOKEN=$token2" >> $GITHUB_ENV
|
|
- name: restore cache
|
|
id: cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ./git-ci-cache
|
|
key: new-next-version-${{ github.run_id }}
|
|
- name: Set NEWVERSION variable
|
|
id: set_version
|
|
run: |
|
|
cd ./git-ci-cache
|
|
if [ -f newversion.txt ]; then
|
|
NEWVERSION=$(cat newversion.txt)
|
|
else
|
|
NEWVERSION=$(cat ../lerna.json | jq -r '.version').$(date +'%Y%m%d%H%M%S')
|
|
echo "$NEWVERSION" > newversion.txt
|
|
fi
|
|
echo "NEWVERSION=$NEWVERSION" >> $GITHUB_ENV
|
|
- name: Print NEWVERSION
|
|
run: echo "The new version is ${{ env.NEWVERSION }}"
|
|
- name: Save NEWVERSION to cache
|
|
run: echo "NEWVERSION=$NEWVERSION" >> ./git-ci-cache/newversion.txt
|
|
- name: save cache
|
|
id: save-cache
|
|
uses: actions/cache/save@v3
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
with:
|
|
path: ./git-ci-cache
|
|
key: new-next-version-${{ github.run_id }}
|
|
- name: publish npmjs.org
|
|
continue-on-error: true
|
|
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 config --global --add safe.directory /__w/nocobase/nocobase
|
|
npm config set access public
|
|
npm config set registry https://registry.npmjs.org/
|
|
npm config set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}
|
|
yarn config set access public
|
|
yarn config set registry https://registry.npmjs.org/
|
|
yarn config set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}
|
|
yarn install
|
|
yarn lerna version ${{ env.NEWVERSION }} -y --no-git-tag-version
|
|
yarn build
|
|
echo "# test" >> Release.md
|
|
git add .
|
|
git commit -m "chore(versions): test publish packages xxx"
|
|
cat lerna.json
|
|
yarn release:force --no-verify-access --no-git-reset --registry https://registry.npmjs.org/ --dist-tag=next
|
|
- name: Checkout pro-plugins
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: nocobase/pro-plugins
|
|
path: packages/pro-plugins
|
|
ref: next
|
|
fetch-depth: 0
|
|
token: ${{ steps.app-token.outputs.token }}
|
|
- name: Clone pro repos
|
|
shell: bash
|
|
run: |
|
|
for repo in ${{ join(fromJSON(vars.NEXT_PRO_PLUGIN_REPOS), ' ') }} ${{ join(fromJSON(vars.CUSTOM_PRO_PLUGIN_REPOS), ' ') }}
|
|
do
|
|
git clone -b next https://x-access-token:${{ steps.app-token.outputs.token }}@github.com/nocobase/$repo.git packages/pro-plugins/@nocobase/$repo
|
|
done
|
|
- name: Build Pro plugins
|
|
run: |
|
|
yarn config set registry https://registry.npmjs.org/
|
|
yarn install
|
|
yarn lerna version ${{ env.NEWVERSION }} -y --no-git-tag-version
|
|
yarn build packages/pro-plugins
|
|
- name: publish pkg.nocobase.com
|
|
run: |
|
|
git reset --hard
|
|
npm config set //pkg.nocobase.com/:_authToken=${{ env.PKG_NOCOBASE_TOKEN }}
|
|
yarn release:force --no-verify-access --no-git-reset --registry https://pkg.nocobase.com --dist-tag=next
|
|
- name: publish pkg-src.nocobase.com
|
|
run: |
|
|
git reset --hard
|
|
bash generate-npmignore.sh ignore-src
|
|
npm config set //pkg-src.nocobase.com/:_authToken=${{ env.PKG_SRC_NOCOBASE_TOKEN }}
|
|
yarn release:force --no-verify-access --no-git-reset --registry https://pkg-src.nocobase.com --dist-tag=next
|
|
- name: Tag
|
|
run: |
|
|
git reset --hard HEAD~
|
|
git tag v${{ env.NEWVERSION }}
|
|
git push origin v${{ env.NEWVERSION }}
|
|
cd ./packages/pro-plugins
|
|
git reset --hard
|
|
git tag v${{ env.NEWVERSION }}
|
|
git push origin v${{ env.NEWVERSION }}
|
|
cd ../../
|
|
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 reset --hard
|
|
git tag v${{ env.NEWVERSION }}
|
|
git push origin v${{ env.NEWVERSION }}
|
|
cd ../../../../
|
|
done
|
|
- name: Run release script
|
|
shell: bash
|
|
run: |
|
|
git fetch
|
|
node scripts/release/changelogAndRelease.js --ver alpha --cmsURL ${{ secrets.CMS_URL }} --cmsToken ${{ secrets.CMS_TOKEN }}
|
|
env:
|
|
PRO_PLUGIN_REPOS: ${{ vars.NEXT_PRO_PLUGIN_REPOS }}
|
|
GH_TOKEN: ${{ steps.app-token.outputs.token }}
|