From 791d72074978eefbfbb8f46f974681b989212d46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81kos=20Kiss?= Date: Sun, 6 Aug 2023 16:04:12 +0200 Subject: [PATCH] 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. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index c768c46..b5065da 100644 --- a/action.yml +++ b/action.yml @@ -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