Skip to content

Commit 402f572

Browse files
committed
fixes
1 parent 4892f96 commit 402f572

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/common_quickstart.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,21 +75,22 @@ jobs:
7575
run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
7676
- name: Run setup command.
7777
env:
78-
LEGACY: inputs.is_legacy == true
78+
LEGACY: inputs.is_legacy
7979
run: ${{ inputs.setup_command }}
8080
- name: Install Secret GoogleService-Info.plist
8181
run: |
8282
scripts/decrypt_gha_secret.sh \
8383
${{ inputs.plist_src_path }} \
8484
${{ inputs.plist_dst_path }} \
8585
"$plist_secret"
86-
- uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
86+
- name: Build ${{ inputs.product }} Quickstart
87+
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
8788
env:
88-
LEGACY: ${{ inputs.is_legacy == true }}
89+
LEGACY: inputs.is_legacy
8990
with:
9091
timeout_minutes: 15
9192
max_attempts: 3
9293
retry_wait_seconds: 120
9394
command: |
94-
([ -z $plist_secret ] || == true && 'LEGACY=true' || '' }} scripts/test_quickstart.sh ${{ inputs.product }} true)
95+
([ -z $plist_secret ] || scripts/test_quickstart.sh ${{ inputs.product }} true)
9596

0 commit comments

Comments
 (0)