Skip to content

Fix paths

Fix paths #2

Workflow file for this run

name: Deploy to Github Pages
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: '3.8'
architecture: 'x64'
- name: Install dependencies
run: |
pip install -r requirements-deploy.txt
- name: Build the book
run: |
pip freeze
pip --version
python --version
jupyter-book build .
- name: Deploy
if: github.ref == 'refs/heads/main'
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build/html