File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,12 @@ jobs:
30
30
- name : Execute the notebooks
31
31
run : |
32
32
make executeall
33
+ shell : bash
33
34
34
35
- name : Convert the notebooks to HTML
35
36
run : |
36
37
make convertall
38
+ shell : bash
37
39
38
40
- name : Name artifact
39
41
id : nameartifact
Original file line number Diff line number Diff line change 38
38
export TUTORIALS_MAIN_BRANCH=origin/main
39
39
make executeall
40
40
make convertall
41
+ shell : bash
41
42
42
43
# Otherwise, only run tutorials that have been modified
43
44
- name : Run only modified tutorials
46
47
export TUTORIALS_MAIN_BRANCH=origin/main
47
48
make execute
48
49
make convert
50
+ shell : bash
49
51
50
52
- name : Name artifact
51
53
id : nameartifact
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ convert:
40
40
41
41
executeall :
42
42
i=0; \
43
- _paths=${ALL_RQT_PATHS} ; \
43
+ _paths=( ${ALL_RQT_PATHS} ) ; \
44
44
for notebook in ${ALL_NOTEBOOKS} ; do \
45
45
echo $$ {_paths[i]}; \
46
46
python -m pip install --force-reinstall -r $$ {_paths[i]}; \
You can’t perform that action at this time.
0 commit comments