Charles N Wyble
434758695a
git-subtree-dir: vendor/git.knownelement.com/reachableceo/DSR-Pipeline-Server git-subtree-split: 284d9ba86e6d0ae4c7c1087556702ba262f57971
16 lines
457 B
Bash
16 lines
457 B
Bash
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
# Expand variables into rendered YAML files. These will be used by pandoc to format the output artifacts
|
|
$MO_PATH $YamlInputTemplateFileStakeholderOutput > $BUILDYAML_STAKEHOLDER_OUTPUT
|
|
|
|
echo "Creating stakeholder report..."
|
|
|
|
pandoc \
|
|
"$StakeholderOutputMarkdownOutputFile" \
|
|
--template $PANDOC_TEMPLATE \
|
|
--metadata-file="$BUILDYAML_STAKEHOLDER_OUTPUT" \
|
|
--from markdown \
|
|
--to=pdf \
|
|
--output $StakeholderOutputPDFOutputFile |