From 0a4023cf7218d2164c0f25a80557fb15e78dd404 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Sun, 15 Dec 2024 20:41:14 +0100 Subject: [PATCH] fix(action): use GITHUB_ACTION_PATH Files are not relative T-T --- action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b28ba69..646017d 100644 --- a/action.yml +++ b/action.yml @@ -34,7 +34,8 @@ runs: using: 'composite' steps: - name: Create report - run: create-report.sh + run: | + "$GITHUB_ACTION_PATH/create-report.sh" - name: Upload Artifact uses: https://code.forgejo.org/forgejo/upload-artifact@v4 if: input.generate-artifact