Merge pull request #17 from kber-trumpf/list_of_paths #20
This file contains hidden or 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 | |
- name: Setup and build 🔧 | |
run: | | |
sudo apt-get install python3-pip | |
pip3 install sphinx sphinx-vhdl sphinx_rtd_theme | |
sphinx-build -M html doc/source public | |
touch public/html/.nojekyll | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: public/html |