From 20c23171e615a2a709417d9c5870e955f4a50e96 Mon Sep 17 00:00:00 2001 From: Destiny Saturday Date: Wed, 31 Jul 2024 09:52:50 +0100 Subject: [PATCH] Update action.yml Signed-off-by: Destiny Saturday --- action.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 9ef57408..fb8d8aa9 100644 --- a/action.yml +++ b/action.yml @@ -37,8 +37,11 @@ inputs: runs: using: 'composite' steps: - - name: Checkout - uses: actions/checkout@v4 + - name: Set GitHub Path + run: echo "$GITHUB_ACTION_PATH" >> $GITHUB_PATH + shell: bash + env: + GITHUB_ACTION_PATH: ${{ github.action_path }} - name: Run entrypoint.sh run: chmod +x entrypoint.sh && ./entrypoint.sh shell: bash