UniTask/.github/workflows/build-docs.yml

32 lines
756 B
YAML
Raw Permalink Normal View History

name: build-docs
on:
push:
branches:
- master
- feature/docs
jobs:
run-docfx:
runs-on: ubuntu-latest
2022-07-26 12:10:32 +08:00
timeout-minutes: 10
steps:
2022-07-26 14:34:50 +08:00
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
repository: Cysharp/DocfxTemplate
path: docs/_DocfxTemplate
- uses: Kirbyrawr/docfx-action@master
name: Docfx metadata
with:
args: metadata docs/docfx.json
- uses: Kirbyrawr/docfx-action@master
name: Docfx build
with:
args: build docs/docfx.json
- name: Publish to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
2021-04-19 17:47:10 +08:00
publish_dir: docs/_site