This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
Merge branch 'gurka-feat-harp_ci' into 'main' #180
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: documentation | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
name: Sphinx Pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup and build | |
run: | | |
sudo apt-get install python3-pip | |
pip3 install sphinx sphinx-vhdl sphinx_rtd_theme GitPython | |
mkdir public | |
sphinx-build -M html doc/source public | |
touch public/html/.nojekyll | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: public/html |