Use env. variable instead of an expression in action.yml (fixes #7)
This is a workaround for backslashes being included in the path for ${{ github.action_path }} even when using bash on Windows.
This commit is contained in:
parent
99efbd4524
commit
791d720749
1 changed files with 1 additions and 1 deletions
|
@ -217,7 +217,7 @@ runs:
|
|||
echo ::group::Create Qlot Environment
|
||||
|
||||
if [[ -n "${QLFILE_TEMPLATE}" ]]; then
|
||||
echo "${QLFILE_TEMPLATE}" | ${{ github.action_path }}/templater.ros > qlfile
|
||||
echo "${QLFILE_TEMPLATE}" | $GITHUB_ACTION_PATH/templater.ros > qlfile
|
||||
rm -f qlfile.lock
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue