File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -75,21 +75,22 @@ jobs:
75
75
run : sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
76
76
- name : Run setup command.
77
77
env :
78
- LEGACY : inputs.is_legacy == true
78
+ LEGACY : inputs.is_legacy
79
79
run : ${{ inputs.setup_command }}
80
80
- name : Install Secret GoogleService-Info.plist
81
81
run : |
82
82
scripts/decrypt_gha_secret.sh \
83
83
${{ inputs.plist_src_path }} \
84
84
${{ inputs.plist_dst_path }} \
85
85
"$plist_secret"
86
- - uses : nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
86
+ - name : Build ${{ inputs.product }} Quickstart
87
+ uses : nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
87
88
env :
88
- LEGACY : ${{ inputs.is_legacy == true }}
89
+ LEGACY : inputs.is_legacy
89
90
with :
90
91
timeout_minutes : 15
91
92
max_attempts : 3
92
93
retry_wait_seconds : 120
93
94
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)
95
96
You can’t perform that action at this time.
0 commit comments