workflow fixes #11
Workflow file for this run
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: pull_request | |
jobs: | |
make-pages: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.9'] | |
steps: | |
- name: checkout nsrdb | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
path: nsrdb | |
- name: checkout mlclouds | |
uses: actions/checkout@v2 | |
with: | |
repository: nrel/mlclouds | |
ssh-key: ${{ secrets.SSH_KEY }} | |
path: mlclouds | |
- name: checkout rest2 | |
uses: actions/checkout@v2 | |
with: | |
repository: nrel/rest2 | |
ssh-key: ${{ secrets.SSH_KEY }} | |
path: rest2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
- name: Install rest2 dependencies | |
working-directory: ./rest2 | |
shell: bash -l {0} | |
run: | | |
conda install pip | |
pip install -e . | |
- name: Install nsrdb dependencies | |
working-directory: ./nsrdb | |
shell: bash -l {0} | |
run: | | |
conda install hdf4 | |
conda install -c conda-forge pyhdf | |
pip install -e . | |
- name: Install mlclouds dependencies | |
working-directory: ./mlclouds | |
shell: bash -l {0} | |
run: | | |
pip install -e . | |
- name: install sphinx dependencies | |
working-directory: ./ | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install sphinx | |
python -m pip install sphinx_rtd_theme | |
python -m pip install sphinx-click | |
python -m pip install . | |
- name: build documentation | |
run: | | |
cd docs | |
make html | |
- name: deploy | |
uses: peaceiris/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/_build/html | |
force_orphan: true | |
full_commit_message: ${{ github.event.head_commit.message }} |