Skip to content

Commit

Permalink
make dry-run also accept bools
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed Aug 21, 2024
1 parent a775a7a commit 13e8b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}' \
Expand Down

0 comments on commit 13e8b18

Please sign in to comment.