mirror of
https://github.com/nonebot/nonebot2.git
synced 2026-06-19 11:02:28 +00:00
9b760a489d
Bumps the actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
53 lines
1.4 KiB
YAML
53 lines
1.4 KiB
YAML
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@v7
|
|
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
|