Merge pull request #438 from DCC-EX:master-exraildocdev #10
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: Docs | |
on: | |
push: | |
branches: | |
- master-exraildoc | |
- master-exraildocdev | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: Install Requirements | |
run: | | |
python -m pip install --upgrade pip | |
pip3 install -r requirements.txt | |
sudo apt-get install doxygen | |
- name: Build Devel docs | |
run: | | |
git checkout master-exraildocdev | |
cd docs | |
make html | |
cd .. | |
- name: Build Prod docs | |
run: | | |
git checkout master-exraildoc | |
cd docs | |
make html | |
touch _build/html/.nojekyll | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@ba1486788b0490a235422264426c45848eac35c6 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages # The branch the action should deploy to. | |
folder: docs/_build/html # The folder the action should deploy. |