chore: prepare PySR 2.0.0a2 release (#1189) #678
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: Documentation | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: "*" | |
| paths: | |
| - 'pysr/**' | |
| - '.github/workflows/docs.yml' | |
| - 'docs/**' | |
| - 'README.md' | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - 'pysr/**' | |
| - '.github/workflows/docs.yml' | |
| - 'docs/**' | |
| - 'README.md' | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| pull-requests: read | |
| statuses: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| target: [primary, secondary] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| cache-dependency-path: docs/package-lock.json | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.11' | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: '1' | |
| - name: Install julia deps | |
| run: julia --project=docs -e 'using Pkg; Pkg.instantiate()' | |
| - name: Install python deps | |
| run: pip install -e .[docs] | |
| - name: Install npm deps | |
| run: npm ci | |
| working-directory: docs | |
| - name: Generate documentation markdown | |
| run: npm run gen:params && npm run gen:api && npm run gen:index && npm run gen:papers | |
| working-directory: docs | |
| - name: Deploy | |
| # Fork PRs don't receive repository secrets; only deploy on push/tag runs. | |
| if: github.event_name != 'pull_request' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| DAMTP_DEPLOY_KEY: ${{ secrets.DAMTP_DEPLOY_KEY }} | |
| DEPLOYMENT_TARGET: ${{ matrix.target }} | |
| run: julia --project=docs docs/deploy.jl |