Skip to content

Merge pull request #67 from atom-robotics-lab/revert-66-sani/wiki #88

Merge pull request #67 from atom-robotics-lab/revert-66-sani/wiki

Merge pull request #67 from atom-robotics-lab/revert-66-sani/wiki #88

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/setup-python@v2
- name: Install dependencies
run: |
pip install sphinx sphinx_rtd_theme myst_parser sphinx-copybutton
- name: sphinx build
run: |
sphinx-build . docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/