From a5345bd066801e65fb89d274a7f5586842e4db10 Mon Sep 17 00:00:00 2001 From: rlespinasse Date: Wed, 13 Oct 2021 11:32:11 +0200 Subject: [PATCH] fix: use windows-compatible env var for action path --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f27272e..e6c2b95 100644 --- a/action.yml +++ b/action.yml @@ -14,7 +14,7 @@ branding: runs: using: "composite" steps: - - run: ${{ github.action_path }}/slugify.sh + - run: $GITHUB_ACTION_PATH/slugify.sh shell: bash env: INPUT_KEY: ${{ inputs.key }}