File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change 23
23
# secrets:
24
24
# plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
25
25
#
26
- secrets :
27
- plist_secret :
28
- required : false
26
+ # secrets:
27
+ # plist_secret:
28
+ # required: false
29
29
30
30
inputs :
31
31
# The product to test be tested (e.g. `FirebaseABTesting`).
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
78
+ LEGACY : ${{ inputs.is_legacy }}
79
79
run : ${{ inputs.setup_command }}
80
80
- name : Install Secret GoogleService-Info.plist
81
81
run : |
@@ -86,11 +86,20 @@ jobs:
86
86
- name : Build ${{ inputs.product }} Quickstart
87
87
uses : nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
88
88
env :
89
- LEGACY : inputs.is_legacy
89
+ LEGACY : ${{ inputs.is_legacy }}
90
90
with :
91
91
timeout_minutes : 15
92
92
max_attempts : 3
93
93
retry_wait_seconds : 120
94
94
command : |
95
95
([ -z $plist_secret ] || scripts/test_quickstart.sh ${{ inputs.product }} true)
96
+ # TODO: Add upload on fialure.
97
+ # - name: Upload raw logs if failed.
98
+ # if: ${{ failure() }}
99
+ # uses: actions/upload-artifact@v4
100
+ # with:
101
+ # name:
102
+ # path:
103
+
104
+
96
105
You can’t perform that action at this time.
0 commit comments