Content of template.

This commit is contained in:
Alexander Artemenko 2021-02-06 15:03:19 +03:00
parent 8119c7120b
commit c794608c88

View file

@ -57,11 +57,21 @@ runs:
set -x set -x
cat > qlfile.template <<EOF
${QLFILE_TEMPLATE}
EOF
if [[ -n "${QLFILE_TEMPLATE}" ]]; then if [[ -n "${QLFILE_TEMPLATE}" ]]; then
echo "${QLFILE_TEMPLATE}" | ${{ github.action_path }}/../scripts/templater.ros > qlfile echo "${QLFILE_TEMPLATE}" | ${{ github.action_path }}/../scripts/templater.ros > qlfile
rm -f qlfile.lock rm -f qlfile.lock
fi fi
echo 'Here is content of template:'
cat qlfile.template
echo ''
echo ''
echo 'Here is content of qlfile:' echo 'Here is content of qlfile:'
cat qlfile cat qlfile