Workflow file for this run
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: PHOTONAI release documentation deployment | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| deploy: | |
| name: Deploy docs | |
| runs-on: ubuntu-latest | |
| if: ${{ github.ref == 'refs/heads/main' }} | |
| steps: | |
| - name: Checkout main | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.9' | |
| - name: Install mkdocs requirements | |
| run: pip install mkdocs mkdocs-material pymdown-extensions mkdocstrings-python mkdocs-jupyter jupyter mkdocs-macros-plugin | |
| - name: Install photonai requirements | |
| run: pip install -r requirements.txt | |
| - name: Install photonai | |
| run: pip install . | |
| - name: Deploy docs | |
| run: mkdocs gh-deploy --force |