mirror of
https://github.com/pgpointcloud/pointcloud.git
synced 2025-12-08 20:36:04 +00:00
25 lines
722 B
YAML
25 lines
722 B
YAML
name: "Website"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
code:
|
|
name: Website
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v2
|
|
- name: Install sphinx
|
|
run: sudo apt-get install python3-virtualenv virtualenv
|
|
- name: Build html documentation
|
|
run: virtualenv -p /usr/bin/python3 venv && source venv/bin/activate && pip install sphinx sphinx_rtd_theme sphinxcontrib.bibtex && cd doc && make html && cd -
|
|
- name: Deploy
|
|
uses: peaceiris/actions-gh-pages@v2.4.0
|
|
env:
|
|
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
|
PUBLISH_BRANCH: gh-pages
|
|
PUBLISH_DIR: ./doc/build/html/
|