Skip to content

Commit 8dd1240

Browse files
committed
Update github workflow: CI fail w/ nb execution failure.
1 parent e3746ab commit 8dd1240

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/deploy.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,19 @@ jobs:
6060
# - name: Build the theme
6161
# run: yarn build:theme-prod
6262

63-
# Build the book
64-
- name: Build the book
63+
# Build site
64+
- name: Build site
6565
env:
6666
DISPLAY: ":99.0"
67-
run: jupyter-book build .
67+
# n = nitpicky (broken links), W = warnings as errors,
68+
# T = full tracebacks, keep-going = runt to competion even with errors
69+
run: make SPHINXOPTS="-nWT --keep-going" html
6870

69-
# Deploy the book's HTML to github pages
71+
# Deploy the site HTML to github pages
7072
- name: GitHub Pages action
7173
if: github.repository == 'scikit-image/skimage-tutorials' && github.ref == 'refs/heads/main' && github.event_name == 'push'
7274
uses: peaceiris/[email protected]
7375
with:
7476
github_token: ${{ secrets.GITHUB_TOKEN }}
7577
publish_dir: ./_build/html
76-
cname: scikit-image.org
78+
cname: scikit-image.org

0 commit comments

Comments
 (0)