From 13e8b181b720f51e336656edee02803e4f0a67c5 Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Wed, 21 Aug 2024 02:40:43 +0100 Subject: [PATCH] make `dry-run` also accept bools --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index 73774f4..bc5d07d 100644 --- a/action.yaml +++ b/action.yaml @@ -112,7 +112,7 @@ runs: - name: Run setup script shell: bash - if: ${{ inputs.dry-run != 'true' }} + if: ${{ inputs.dry-run != 'true' && inputs.dry-run != true }} run: | $GITHUB_ACTION_PATH/setup.sh \ -n '${{ steps.flutter-action.outputs.VERSION }}' \