From 91e0a68ab8890e0359b20c7104fbd6db26c4add9 Mon Sep 17 00:00:00 2001 From: xilesun <2013xile@gmail.com> Date: Mon, 2 Sep 2024 11:39:11 +0800 Subject: [PATCH] chore: ci --- .github/workflows/changelog-and-release.yml | 55 +++++++++++++++++++++ release.sh | 3 -- scripts/release/changelogAndRelease.js | 16 ++++-- 3 files changed, 67 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/changelog-and-release.yml diff --git a/.github/workflows/changelog-and-release.yml b/.github/workflows/changelog-and-release.yml new file mode 100644 index 0000000000..6954e9f189 --- /dev/null +++ b/.github/workflows/changelog-and-release.yml @@ -0,0 +1,55 @@ +name: Write changelog and create release + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +on: + push: + branches: + - feat/auto-changelog + tags: + - 'v*-beta' + +jobs: + app-token: + uses: nocobase/nocobase/.github/workflows/get-nocobase-app-token.yml@main + secrets: inherit + write-changelog-and-release: + needs: + - app-token + runs-on: ubuntu-latest + steps: + - name: Decrypt app token + id: app-token + shell: bash + run: | + ENCRYPTED_SECRET=${{ needs.app-token.outputs.token }}; + APP_TOKEN=$(echo -n "$ENCRYPTED_SECRET" | base64 --decode | openssl enc -aes-256-cbc -pbkdf2 -d -salt -k "${{ secrets.APP_TOKEN_ENCRYPTION_PASSWORD }}"); + echo "token=$APP_TOKEN" >> $GITHUB_OUTPUT + - name: Checkout + uses: actions/checkout@v4 + with: + repository: nocobase/nocobase + token: ${{ steps.app-token.outputs.token }} + persist-credentials: true + fetch-depth: 0 + - name: Set user + 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>' + - name: Set Node.js 18 + uses: actions/setup-node@v3 + with: + node-version: 18 + - name: Run release.sh + shell: bash + run: | + node scripts/release/changelogAndRelease.js + env: + PRO_PLUGIN_REPOS: ${{ vars.PRO_PLUGIN_REPOS }} + - name: Commit and push + run: | + git add . + git commit -m "docs: update changelogs" + # git push origin main diff --git a/release.sh b/release.sh index 323c82a3a0..e5e7771d1e 100755 --- a/release.sh +++ b/release.sh @@ -28,7 +28,4 @@ cd ../../ git add . git commit -m "chore(versions): 😊 publish v$(jq -r '.version' lerna.json)" git tag v$(jq -r '.version' lerna.json) -yarn changelog --breaking-pattern "BREAKING CHANGE:" -git add . -git commit -m "chore: update changelog" # git push --atomic origin main v$(jq -r '.version' lerna.json) diff --git a/scripts/release/changelogAndRelease.js b/scripts/release/changelogAndRelease.js index f44031df66..602784fccc 100644 --- a/scripts/release/changelogAndRelease.js +++ b/scripts/release/changelogAndRelease.js @@ -4,7 +4,7 @@ const path = require('path'); const { Command } = require('commander'); const program = new Command(); -program.option('-f, --from [from]').option('-t, --to [to]').option('-b, --branch [branch]'); +program.option('-f, --from [from]').option('-t, --to [to]').option('-v, --version [version]'); program.parse(process.argv); const header = { @@ -179,10 +179,10 @@ function arrangeChangelogs(changelogs) { } async function collect() { - let { from, to, branch = 'main' } = program.opts(); + let { from, to, version = 'beta' } = program.opts(); if (!from || !to) { // git describe --tags $(git rev-list --tags --max-count=2) --abbrev=0 - const tagPattern = branch === 'main' ? 'v*-beta' : 'v*-alpha'; + const tagPattern = `v*-${version}`; const { stdout: tags } = await execa( 'git', ['describe', '--tags', `$(git rev-list --tags=${tagPattern} --max-count=2)`, '--abbrev=0'], @@ -320,16 +320,24 @@ async function writeChangelog(cn, en, from, to) { } async function createRelease(cn, en, to) { + let { version = 'beta' } = program.opts(); // gh release create -t title -n note -d + if (version === 'alpha') { + await execa('gh', ['release', 'create', to, '-t', to, '-n', `${en}\n---\n${cn}`, '-d', '-p']); + return; + } await execa('gh', ['release', 'create', to, '-t', to, '-n', `${en}\n---\n${cn}`, '-d']); } async function writeChangelogAndCreateRelease() { + let { version = 'beta' } = program.opts(); const { cn, en, from, to } = await generateChangelog(); if (!cn && !en) { throw new Error('No changelog generated'); } - await writeChangelog(cn, en, from, to); + if (version === 'beta') { + await writeChangelog(cn, en, from, to); + } await createRelease(cn, en, to); }