This repository was archived by the owner on Feb 18, 2026. It is now read-only.
Update registering-datafiles-guide.md #3
This file contains hidden or 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: 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 ibisba_workshops | |
| - name: Deploy to GitHub Pages | |
| run: | | |
| ghp-import -n -p -f ibisba_workshops/_build/html |