Skip to content
/ pages Public
forked from sphinx-notes/pages

Github Actions for publishing Sphinx HTML output to github pages

License

Notifications You must be signed in to change notification settings

waltsims/pages

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sphinx to GitHub Pages V2

https://img.shields.io/github/stars/sphinx-notes/pages.svg?style=social&label=Star&maxAge=2592000

Help you deploying your Sphinx documentation to Github Pages.

Usage

This action only help you build and commit Sphinx documentation to gh-pages, branch. So we need some other actions:

  • action/setup-python for installing python and pip
  • actions/checkout for checking out git repository
  • ad-m/github-push-action for pushing site to remote

So your workflow file should be:

name: Pages
on:
  push:
    branches:
    - master
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/setup-python@v2
    - uses: actions/checkout@master
      with:
        fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
    - name: Build and Commit
      uses: sphinx-notes/pages@v2
    - name: Push changes
      uses: ad-m/github-push-action@master
      with:
        github_token: ${{ secrets.GITHUB_TOKEN }}
        branch: gh-pages

Inputs

Input Default Required Description
documentation_path './docs' false Relative path under repository to documentation source files
target_branch 'gh-pages' false Git branch where assets will be deployed
target_path '.' false Directory in Github Pages where Sphinx Pages will be placed
repository_path '.' false Relative path under $GITHUB_WORKSPACE to place the repository. You not need to set this Input unless you checkout the repository to a custom path
requirements_path '' false Relative path under $repository_path to pip requirements file
pyproject_toml_deps '' false Optional dependency specifier for command pip install with pyproject.toml
sphinx_version '' false Custom version of Sphinx
sphinx_options '' false Additional Sphinx options

Examples

The following repository's pages are built by this action:

You can found the workflow file in their repository.

Tips

Copy extra files to site

Use Sphinx confval html_extra_path.

About

Github Actions for publishing Sphinx HTML output to github pages

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 81.0%
  • JavaScript 19.0%