Skip to content

Commit 8a3f390

Browse files
committed
Recreate requirements.txt and deploy workflow
1 parent 4e5abac commit 8a3f390

2 files changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [main]
66

77
jobs:
8-
build:
8+
build-and-deploy:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
@@ -14,15 +14,15 @@ jobs:
1414
- name: Setup Python
1515
uses: actions/setup-python@v4
1616
with:
17-
python-version: 3.9
17+
python-version: "3.9"
1818

1919
- name: Install dependencies
20-
run: pip install -r book-requirements-Linux-macOS.txt
20+
run: pip install -r requirements.txt
2121

22-
- name: Build book
22+
- name: Build Jupyter Book
2323
run: jupyter-book build .
2424

25-
- name: Deploy
25+
- name: Deploy to GitHub Pages
2626
uses: peaceiris/actions-gh-pages@v3
2727
with:
2828
github_token: ${{ secrets.GITHUB_TOKEN }}

requirements.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
jupyter-book==0.15.1
2+
sphinx==5.0.2
3+
sphinx-book-theme==1.0.1
4+
myst-nb==0.17.2
5+
myst-parser==0.18.1

0 commit comments

Comments
 (0)