2022-02-28 17:04:07 +00:00
|
|
|
name: Rebuild project
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
- '*/*'
|
|
|
|
- '**'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
- '*/*'
|
|
|
|
- '**'
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
readme-gen:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: node ./.github/readme-generate.js
|
|
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
|
|
with:
|
|
|
|
commit_message: "[ci skip] Automatic generate readme"
|
|
|
|
file_pattern: ":/*.md"
|
|
|
|
commit_user_name: github-actions[bot]
|
|
|
|
commit_user_email: github-actions[bot]@users.noreply.github.com
|
|
|
|
commit_author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
|
|
|
|
lint-fix:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: '16'
|
|
|
|
cache: 'npm'
|
|
|
|
- run: npm install
|
|
|
|
- run: ./node_modules/.bin/textlint . --fix
|
|
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
|
|
with:
|
|
|
|
commit_message: '[ci skip] Automatic textlint fixes'
|
|
|
|
branch: 'master'
|
|
|
|
file_pattern: ':/*.md'
|
|
|
|
commit_user_name: github-actions[bot]
|
|
|
|
commit_user_email: github-actions[bot]@users.noreply.github.com
|
|
|
|
commit_author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
|
2022-02-28 17:33:48 +00:00
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: BSFishy/pip-action@v1
|
|
|
|
with:
|
|
|
|
requirements: requirements.txt
|
|
|
|
- run: mkdocs build
|
|
|
|
- uses: peaceiris/actions-gh-pages@v3
|
2022-02-28 17:36:11 +00:00
|
|
|
with:
|
2022-02-28 17:33:48 +00:00
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ./site
|