updated MOR tutorial #47
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: Build docs | |
on: | |
push: | |
tags: | |
- "*" | |
workflow_dispatch: | |
jobs: | |
makedocs: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: "read" | |
id-token: "write" | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Cloud SDK | |
uses: google-github-actions/auth@v1 | |
with: | |
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER_DOCS }} | |
service_account: ${{ secrets.GCP_DOC_SERVICE_ACCOUNT }} | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: "3.10" | |
uses-mamba: true | |
miniforge-variant: Mambaforge | |
channels: acellera,conda-forge,pytorch,defaults | |
- name: Install conda deps | |
run: | | |
mamba install -y -q --file package/htmd/DEPENDENCIES nbconvert sphinx=6.1.3 python=3.10 | |
pip install pydata-sphinx-theme==0.13.1 sphinx-argparse sphinx-notfound-page sphinx-sitemap | |
- name: Generate rst docs | |
run: | | |
cd doc; make rst | |
- name: Publish to GCP intermediate docs bucket | |
uses: "google-github-actions/upload-cloud-storage@v1" | |
with: | |
path: "doc/source" | |
destination: "software-acellera-intermediate/public_docs/htmd/${{ github.ref_name }}" | |
- name: Write update file to upload | |
run: echo "Updated" > update | |
- name: Upload "update" file to trigger new docs | |
uses: "google-github-actions/upload-cloud-storage@v1" | |
with: | |
path: "update" | |
destination: "software-acellera-intermediate/" |