From 9e3bbae3836b1b6f129955bf55a19e1d99a61c67 Mon Sep 17 00:00:00 2001 From: "Matt Gaunt-Seo @ Sentry.io" <112419115+mattgauntseo-sentry@users.noreply.github.com> Date: Fri, 13 Jan 2023 11:51:52 -0800 Subject: [PATCH] Fix the install-cmd skipping (#5) --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 969f68f..272ddc3 100644 --- a/action.yml +++ b/action.yml @@ -42,5 +42,5 @@ runs: shell: bash - run: ${{ inputs.install-cmd }} - if: "${{ inputs.install-cmd }} != '' && ${{ steps.cache-venv.outputs.cache-hit }} != 'true'" + if: inputs.install-cmd != '' && steps.cache-venv.outputs.cache-hit != 'true' shell: bash