Skip to content

Commit 95a637f

Browse files
authored
Merge branch 'main' into reorganize-optimal-savings
2 parents a8f99cd + 96662c4 commit 95a637f

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
uses: actions/upload-artifact@v5
7474
if: failure()
7575
with:
76-
name: execution-reports
76+
name: execution-reports-latex
7777
path: _build/latex/reports
7878
# Final Build of HTML
7979
- name: Build HTML
@@ -84,7 +84,7 @@ jobs:
8484
uses: actions/upload-artifact@v5
8585
if: failure()
8686
with:
87-
name: execution-reports
87+
name: execution-reports-html
8888
path: _build/html/reports
8989
- name: Install Node.js and Netlify CLI
9090
shell: bash -l {0}

.github/workflows/publish.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ jobs:
5050
shell: bash -l {0}
5151
run: |
5252
jb build lectures --builder pdflatex --path-output ./ -n -W --keep-going
53+
- name: Upload Execution Reports (LaTeX)
54+
uses: actions/upload-artifact@v5
55+
if: failure()
56+
with:
57+
name: execution-reports-latex
58+
path: _build/latex/reports
5359
- name: Copy LaTeX PDF for GH-PAGES
5460
shell: bash -l {0}
5561
run: |
@@ -60,6 +66,12 @@ jobs:
6066
run: |
6167
jb build lectures --path-output ./ --builder=custom --custom-builder=jupyter -n -W --keep-going
6268
zip -r download-notebooks.zip _build/jupyter
69+
- name: Upload Execution Reports (Download Notebooks)
70+
uses: actions/upload-artifact@v5
71+
if: failure()
72+
with:
73+
name: execution-reports-notebooks
74+
path: _build/jupyter/reports
6375
- uses: actions/upload-artifact@v5
6476
with:
6577
name: download-notebooks
@@ -74,6 +86,12 @@ jobs:
7486
shell: bash -l {0}
7587
run: |
7688
jb build lectures --path-output ./ -n -W --keep-going
89+
- name: Upload Execution Reports (HTML)
90+
uses: actions/upload-artifact@v5
91+
if: failure()
92+
with:
93+
name: execution-reports-html
94+
path: _build/html/reports
7795
# Create HTML archive for release assets
7896
- name: Create HTML archive
7997
shell: bash -l {0}

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies:
77
- pip
88
- pip:
99
- jupyter-book==1.0.4post1
10-
- quantecon-book-theme==0.12.0
10+
- quantecon-book-theme==0.13.0
1111
- sphinx-tojupyter==0.4.0
1212
- sphinxext-rediraffe==0.2.7
1313
- sphinx-exercise==1.2.0

0 commit comments

Comments
 (0)