Skip to content

Create README.md

Create README.md #2

Workflow file for this run

name: Deploy Jupyter Book to GitHub Pages
on:
push:
branches:
- main # Change this if your main branch has a different name
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
pip install -U pip
pip install jupyter-book ghp-import
- name: Build the Jupyter Book
run: jupyter-book build mTeSS-X_docs
- name: Deploy to GitHub Pages
run: |
ghp-import -n -p -f mTeSS-X_docs/_build/html