Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
uses: actions/upload-artifact@v5
if: failure()
with:
name: execution-reports
name: execution-reports-latex
path: _build/latex/reports
# Final Build of HTML
- name: Build HTML
Expand All @@ -84,7 +84,7 @@ jobs:
uses: actions/upload-artifact@v5
if: failure()
with:
name: execution-reports
name: execution-reports-html
path: _build/html/reports
- name: Install Node.js and Netlify CLI
shell: bash -l {0}
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ jobs:
shell: bash -l {0}
run: |
jb build lectures --builder pdflatex --path-output ./ -n -W --keep-going
- name: Upload Execution Reports (LaTeX)
uses: actions/upload-artifact@v5
if: failure()
with:
name: execution-reports-latex
path: _build/latex/reports
- name: Copy LaTeX PDF for GH-PAGES
shell: bash -l {0}
run: |
Expand All @@ -60,6 +66,12 @@ jobs:
run: |
jb build lectures --path-output ./ --builder=custom --custom-builder=jupyter -n -W --keep-going
zip -r download-notebooks.zip _build/jupyter
- name: Upload Execution Reports (Download Notebooks)
uses: actions/upload-artifact@v5
if: failure()
with:
name: execution-reports-notebooks
path: _build/jupyter/reports
- uses: actions/upload-artifact@v5
with:
name: download-notebooks
Expand All @@ -74,6 +86,12 @@ jobs:
shell: bash -l {0}
run: |
jb build lectures --path-output ./ -n -W --keep-going
- name: Upload Execution Reports (HTML)
uses: actions/upload-artifact@v5
if: failure()
with:
name: execution-reports-html
path: _build/html/reports
# Create HTML archive for release assets
- name: Create HTML archive
shell: bash -l {0}
Expand Down
Loading