chore(deps): bump authlib from 1.6.8 to 1.6.11 in /envs/agent_world_model_env #952
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: Deploy Docs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: pages | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| # TODO: Re-enable openspiel service container once the Docker image | |
| # is published to GHCR (see PR #400). The Sphinx Gallery notebooks | |
| # that connect to OpenSpiel will be skipped until then. | |
| # | |
| # services: | |
| # openspiel: | |
| # image: ghcr.io/meta-pytorch/openenv-openspiel-env:latest | |
| # ports: | |
| # - 8000:8000 | |
| # options: >- | |
| # --health-cmd "curl -f http://localhost:8000/health || exit 1" | |
| # --health-interval 10s | |
| # --health-timeout 5s | |
| # --health-retries 5 | |
| # --health-start-period 30s | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e ".[docs]" | |
| pip install -e ./envs/openspiel_env | |
| - name: Check environment docs are in sync | |
| run: python scripts/sync_env_docs.py --check | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v6 | |
| - name: Build docs | |
| run: | | |
| cd docs | |
| make html | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v5 | |
| with: | |
| path: docs/_build/html | |
| deploy: | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
| runs-on: ubuntu-latest | |
| needs: build | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v5 |