2020-11-22 02:42:27 +08:00
|
|
|
name: Release Nonebot Plugin Docs
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [ published ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-12-30 23:29:32 +08:00
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: 3.8
|
|
|
|
architecture: "x64"
|
|
|
|
|
|
|
|
- uses: Gr1N/setup-poetry@v7
|
|
|
|
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pypoetry/virtualenvs
|
|
|
|
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
|
|
|
|
|
2020-11-22 02:42:27 +08:00
|
|
|
- name: Setup Node
|
2021-12-30 23:29:32 +08:00
|
|
|
uses: actions/setup-node@v2
|
2020-11-22 02:42:27 +08:00
|
|
|
with:
|
2021-12-02 14:03:06 +08:00
|
|
|
node-version: "16"
|
|
|
|
|
|
|
|
- name: Get yarn cache directory path
|
|
|
|
id: yarn-cache-dir-path
|
|
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
|
|
|
|
|
|
- name: Cache Packages
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
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 install -E all
|
|
|
|
poetry run sphinx-build -M markdown ./docs_build ./build
|
|
|
|
cp -r ./build/markdown/* ./website/docs/api/
|
2021-12-02 03:17:10 +08:00
|
|
|
yarn install
|
2021-12-02 15:12:36 +08:00
|
|
|
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: |
|
|
|
|
cd packages/nonebot-plugin-docs/
|
2021-12-02 03:17:10 +08:00
|
|
|
poetry version $(poetry version -s)
|
2020-11-22 02:42:27 +08:00
|
|
|
poetry build
|
|
|
|
poetry publish -u ${{secrets.PYPI_USERNAME}} -p ${{secrets.PYPI_PASSWORD}}
|