We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7696997 commit ec1df78Copy full SHA for ec1df78
action.yml
@@ -12,6 +12,8 @@ inputs:
12
description: 'The name of the rendered DOCX file'
13
output-tex:
14
description: 'The name of the rendered TEX file'
15
+ extra-build-options:
16
+ description: 'Additional build options to be passed to build.sh'
17
runs:
18
using: 'composite'
19
steps:
@@ -20,7 +22,7 @@ runs:
20
22
- run: chown -R $(id -u):$(id -g) $PWD
21
23
shell: sh
24
- run: >
- /usr/bin/build.sh
25
+ /usr/bin/build.sh ${{ inputs.extra-build-options }}
26
$( [ -n "${{ inputs.output-pdf }}" ] && echo --pdf=${{ inputs.output-pdf }} )
27
$( [ -n "${{ inputs.output-html }}" ] && echo --html=${{ inputs.output-html }} )
28
$( [ -n "${{ inputs.output-docx }}" ] && echo --docx=${{ inputs.output-docx }} )
0 commit comments