File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 46
46
type : string
47
47
coverage_report_json_directory :
48
48
description : ' '
49
- required : true
49
+ required : false
50
50
type : string
51
51
coverage_json_artifact :
52
52
description : ' Name of the coverage JSON artifact.'
@@ -183,8 +183,8 @@ jobs:
183
183
- name : Workaround I - https://github.com/sphinx-doc/sphinx/issues/13190
184
184
if : inputs.latex_artifact != ''
185
185
run : |
186
- printf "Changing directory to 'doc /_build/latex' ...\n"
187
- cd doc /_build/latex
186
+ printf "Changing directory to '${{ inputs.doc_directory || '.' }} /_build/latex' ...\n"
187
+ cd ${{ inputs.doc_directory || '.' }} /_build/latex
188
188
189
189
MIMETYPE_EXTENSIONS=(
190
190
"image/png:png"
@@ -232,8 +232,8 @@ jobs:
232
232
- name : Workaround II - https://github.com/sphinx-doc/sphinx/issues/13189
233
233
if : inputs.latex_artifact != ''
234
234
run : |
235
- printf "Changing directory to 'doc /_build/latex' ...\n"
236
- cd doc /_build/latex
235
+ printf "Changing directory to '${{ inputs.doc_directory || '.' }} /_build/latex' ...\n"
236
+ cd ${{ inputs.doc_directory || '.' }} /_build/latex
237
237
238
238
printf "Searching for downloaded images, that need normalization ...\n"
239
239
for imageExt in png svg jpg jpeg; do
You can’t perform that action at this time.
0 commit comments