update chemspace datastore 🪐 (#1024) #401
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: publish-docs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| name: Deploy Docs to Github Pages | |
| steps: | |
| - name: Initial setup | |
| uses: actions/checkout@v6 | |
| # -------- | |
| # NOTE: this section is copied from lint-and-test.yml | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: 3.11 | |
| - name: Install dependencies | |
| run: uv sync --extra dev | |
| - name: Install Simmate | |
| run: uv pip install -e . | |
| # -------- | |
| - name: Make documentation | |
| shell: bash -l {0} | |
| run: | | |
| uv run mkdocs gh-deploy --force |