Removed debug configuration from input file. #276
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: Build and Deploy | |
on: [push, pull_request] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly. | |
with: | |
persist-credentials: false | |
- name: Dependencies | |
run: | | |
.github/workflows/dependencies/documentation.sh | |
echo "Installing python packages for docs..." | |
pip3 install sphinx sphinx_rtd_theme breathe | |
- name: Install and Build | |
run: | | |
cd doc | |
echo "Build the Sphinx documentation for BoltzmannMFX." | |
make html | |
- name: Deploy | |
if: github.event_name == 'push' && github.repository == 'PNNL-CompBio/BoltzmannMFX' && github.ref == 'refs/heads/main' | |
uses: JamesIves/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages # The branch the action should deploy to. | |
FOLDER: doc/build/html # The folder the action should deploy. |