Skip to content

[AUTO] Bump minor version number #176

[AUTO] Bump minor version number

[AUTO] Bump minor version number #176

Workflow file for this run

name: Documentation
on:
push:
branches:
- develop
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: pandoc/actions/setup@main
- uses: actions/checkout@v4
- uses: ./.github/actions/build
with:
python-version: 3.11
pip-options: all,rllib,docs
- name: Sphinx build
run: |
cd docs
make html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html
force_orphan: true