Replace a couple NREL references (#139) #11
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: Documentation | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: github-pages | |
| # This environment must be configured in the repo Environment settings | |
| # It's configured to publish from the gh-pages branch, set in the repo Pages settings | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.13 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Install the package & dependencies | |
| run: | | |
| uv version | |
| uv sync | |
| - name: Deploy the docs to GitHub Pages | |
| run: | | |
| git pull | |
| uv run mkdocs gh-deploy |