From 6e8072a14dda769d70d5079d24e4bc22c88ee1d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Sun, 15 Dec 2024 20:49:57 +0100 Subject: [PATCH] fix(action): conditions where always true Why tho T-T --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index dbb310a..2257e90 100644 --- a/action.yml +++ b/action.yml @@ -38,12 +38,12 @@ runs: "$GITHUB_ACTION_PATH/create-report.sh" - name: Upload Artifact uses: https://code.forgejo.org/forgejo/upload-artifact@v4 - if: inputs.generate-artifact + if: inputs.generate-artifact == 'true' with: path: size-report.md - name: inputs.artifact-name + name: ${{ inputs.artifact-name }} - name: Upload Report - if: inputs.comment-on-pr + if: inputs.comment-on-pr == 'true' run: | set -eu