Skip to content

Commit b6cc13b

Browse files
committed
break out HTML page building into two steps
1 parent 56be78d commit b6cc13b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.azure-pipelines/templates/nb-docs-nix.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ steps:
22
- script: |
33
source activate bayesian-modelling-tutorial
44
mkdir -p docs/notebooks
5-
jupyter nbconvert --config nbconvert_config.py --execute --template full &&
6-
pandoc README.md -o docs/index.html -c static/pandoc.css -s &&
7-
displayName: 'Build docs pages'
5+
jupyter nbconvert --config nbconvert_config.py --execute --template full
6+
displayName: 'Convert notebooks to HTML'
7+
8+
- script: |
9+
source activate bayesian-modelling-tutorial
10+
pandoc README.md -o docs/index.html -c static/pandoc.css -s
11+
displayName: "Make index page."

0 commit comments

Comments
 (0)