Skip to content

Commit 61fd753

Browse files
committed
fix boolean check in yml
1 parent f8ff2e6 commit 61fd753

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/setup/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,12 @@ runs:
8989
repo-token: ${{ inputs.repo-token }}
9090

9191
- name: Set Up Homebrew
92-
if: ${{ inputs.with-cert }}
92+
if: ${{ inputs.with-cert == 'true' }}
9393
id: set-up-homebrew
9494
uses: Homebrew/actions/setup-homebrew@master
9595

9696
- name: 'Setup SSL Cert Infra'
97-
if: ${{ inputs.with-cert }}
97+
if: ${{ inputs.with-cert == 'true' }}
9898
shell: bash
9999
run: |
100100
sudo apt-get -y update

0 commit comments

Comments
 (0)