Skip to content

Prepared template for Openflow programming #57

Prepared template for Openflow programming

Prepared template for Openflow programming #57

Workflow file for this run

name: 'docs'
on:
push:
branches:
# - main
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: pip install sphinx sphinx-rtd-theme
- name: Build documentation
run: make docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html