Update main.yml #4
This file contains 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: docs_pages_workflow | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build_docs_job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install -U sphinx | |
python -m pip install sphinx-rtd-theme | |
- name: Make the Sphinx Docs | |
run: | | |
make -C docs clean | |
make -C docs html | |
- name: Init repo in dist folder and commit | |
run: | | |
cd docs/build/html/ | |
git init | |
touch .nojekyll | |
git add -A | |
git config --local user.email "[email protected]" | |
git config --local user.name "Github Action" | |
git commit -m 'deploy' | |
- name: Push to GitHub Pages branch | |
# You may pin to the exact commit or the version. | |
# uses: ftnext/action-push-ghpages@621f3b2f1d34079b4da6051daedb3e200af0dd38 | |
uses: ftnext/[email protected] | |
with: | |
# Path to the directory where the static assets are located. | |
build_dir: docs/build/html | |
# Specify GITHUB_TOKEN in your repository. | |
github_token: ${{secrets.GITHUB_TOKEN}} | |
# - name: Force push to destination branch | |
# uses: ad-m/[email protected] | |
# with: | |
# github_token: ${{secrets.GITHUB_TOKEN}} | |
# branch: gh-pages | |
# force: true | |
# directory: docs/build/html | |