Content of template.
This commit is contained in:
parent
8119c7120b
commit
c794608c88
1 changed files with 10 additions and 0 deletions
10
.github/actions/setup-lisp/action.yml
vendored
10
.github/actions/setup-lisp/action.yml
vendored
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue