2020-11-22 02:42:27 +08:00
|
|
|
name: Release Nonebot Plugin Docs
|
|
|
|
|
|
|
|
on:
|
2022-01-08 18:23:17 +08:00
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- v*
|
2020-11-22 02:42:27 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2022-01-13 16:41:01 +08:00
|
|
|
- name: Setup Python Environment
|
|
|
|
uses: ./.github/actions/setup-python
|
2021-12-30 23:29:32 +08:00
|
|
|
|
2022-01-13 16:41:01 +08:00
|
|
|
- name: Setup Node Environment
|
|
|
|
uses: ./.github/actions/setup-node
|
2020-11-22 02:42:27 +08:00
|
|
|
|
2021-12-02 15:12:36 +08:00
|
|
|
- name: Install and build
|
2021-12-02 03:17:10 +08:00
|
|
|
run: |
|
2021-12-02 15:12:36 +08:00
|
|
|
poetry run sphinx-build -M markdown ./docs_build ./build
|
|
|
|
cp -r ./build/markdown/* ./website/docs/api/
|
|
|
|
yarn prettier
|
2021-12-02 14:03:06 +08:00
|
|
|
yarn build:plugin --out-dir ../packages/nonebot-plugin-docs/nonebot_plugin_docs/dist
|
2021-12-02 03:17:10 +08:00
|
|
|
|
2020-11-22 02:42:27 +08:00
|
|
|
- name: Publish Package
|
|
|
|
run: |
|
2022-01-08 16:49:50 +08:00
|
|
|
export NONEBOT_VERSION=`poetry version -s`
|
2020-11-22 02:42:27 +08:00
|
|
|
cd packages/nonebot-plugin-docs/
|
2022-01-08 16:49:50 +08:00
|
|
|
poetry version $NONEBOT_VERSION
|
2020-11-22 02:42:27 +08:00
|
|
|
poetry build
|
|
|
|
poetry publish -u ${{secrets.PYPI_USERNAME}} -p ${{secrets.PYPI_PASSWORD}}
|