Release #28
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Generate token | |
| id: generate-token | |
| uses: tibdex/github-app-token@v2 | |
| with: | |
| app_id: ${{ secrets.APP_ID }} | |
| private_key: ${{ secrets.APP_KEY }} | |
| - uses: actions/checkout@v5 | |
| with: | |
| token: ${{ steps.generate-token.outputs.token }} | |
| - name: Setup Python Environment | |
| uses: ./.github/actions/setup-python | |
| - name: Setup Node Environment | |
| uses: ./.github/actions/setup-node | |
| - name: Build API Doc | |
| uses: ./.github/actions/build-api-doc | |
| - run: echo "TAG_NAME=v$(uv version --short)" >> $GITHUB_ENV | |
| - name: Archive Changelog | |
| uses: docker://ghcr.io/nonebot/auto-changelog:master | |
| with: | |
| changelog_file: website/src/changelog/changelog.md | |
| archive_regex: '(?<=## )最近更新(?=\n)' | |
| archive_title: ${{ env.TAG_NAME }} | |
| commit_and_push: false | |
| - name: Archive Files | |
| run: | | |
| yarn archive $(uv version --short) | |
| yarn prettier | |
| - name: Push Tag | |
| run: | | |
| git config user.name noneflow[bot] | |
| git config user.email 129742071+noneflow[bot]@users.noreply.github.com | |
| git add . | |
| git commit -m ":bookmark: Release $(uv version --short)" | |
| git tag ${{ env.TAG_NAME }} | |
| git push && git push --tags |