luci/.github/workflows/jsdoc.yml
Paul Spooren 276ad0ca63 CI: enable jekyll for docs for overview README
the overview README contains links for the client and server side API,
it's a markdown file and therefore requires jekyll to run.

Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-10-08 23:35:42 -10:00

32 lines
605 B
YAML

name: GitHub pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install
run: npm install
- name: Build
run: npm run doc
- name: Archive docs as artifact
uses: actions/upload-artifact@v2
with:
name: docs
path: ./docs/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/
enable_jekyll: true