@@ -75,12 +75,12 @@ jobs:
75
75
run : sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
76
76
- name : Run setup command.
77
77
run : ${{ inputs.setup_command }}
78
- - name : Install Secret GoogleService-Info.plist
79
- run : |
80
- scripts/decrypt_gha_secret.sh \
81
- ${{ inputs.plist_src_path }} \
82
- ${{ inputs.plist_dst_path }} \
83
- "$plist_secret"
78
+ - name : Install Secret GoogleService-Info.plist
79
+ run : |
80
+ scripts/decrypt_gha_secret.sh \
81
+ ${{ inputs.plist_src_path }} \
82
+ ${{ inputs.plist_dst_path }} \
83
+ "$plist_secret"
84
84
- name : Build ${{ inputs.product }} Quickstart (${{ inputs.is_legacy && 'Legacy' || 'Non-Legacy' }})
85
85
uses : nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
86
86
with :
@@ -92,14 +92,14 @@ jobs:
92
92
${{ inputs.product }} \
93
93
${{ inputs.run_tests }} \
94
94
# Failure sequence to upload artifact.
95
- - id : lowercase_product
96
- if : ${{ failure() }}
97
- run : |
98
- lowercase_product=$(echo "${{ inputs.product }}" | tr '[:upper:]' '[:lower:]')
99
- echo "lowercase_product=$lowercase_product" >> $GITHUB_OUTPUT
100
- - name : Remove data before upload.
101
- if : ${{ failure() }}
102
- run : scripts/remove_data.sh ${{ steps.lowercase_product.outputs.lowercase_product }}
95
+ - id : lowercase_product
96
+ if : ${{ failure() }}
97
+ run : |
98
+ lowercase_product=$(echo "${{ inputs.product }}" | tr '[:upper:]' '[:lower:]')
99
+ echo "lowercase_product=$lowercase_product" >> $GITHUB_OUTPUT
100
+ - name : Remove data before upload.
101
+ if : ${{ failure() }}
102
+ run : scripts/remove_data.sh ${{ steps.lowercase_product.outputs.lowercase_product }}
103
103
# - uses: actions/upload-artifact@v4
104
104
# if: ${{ failure() }}
105
105
# with:
0 commit comments