Update pitch_spelling.ipynb #67
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 | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install -y pandoc | |
python -m pip install -U sphinx | |
python -m pip install -U pandoc | |
python -m pip install -U nbsphinx | |
python -m pip install -U insegel | |
python -m pip install sphinx-rtd-theme | |
- name: Copy notebooks to the docs path | |
run: | | |
cp -R notebooks docs/source/notebooks | |
- name: make the sphinx docs | |
run: | | |
make -C docs clean | |
make -C docs html | |
- name: Init new 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' | |
git config --global --add safe.directory /github/workspace/docs/build/html | |
- name: Force push to destination branch | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages | |
force: true | |
directory: ./docs/build/html |