Skip to content

Commit 164e38d

Browse files
committed
uncomment plist decrypting
1 parent 5f176fa commit 164e38d

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/common_quickstart.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ jobs:
7575
run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
7676
- name: Run setup command.
7777
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"
8484
- name: Build ${{ inputs.product }} Quickstart (${{ inputs.is_legacy && 'Legacy' || 'Non-Legacy' }})
8585
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
8686
with:
@@ -92,14 +92,14 @@ jobs:
9292
${{ inputs.product }} \
9393
${{ inputs.run_tests }} \
9494
# 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 }}
103103
# - uses: actions/upload-artifact@v4
104104
# if: ${{ failure() }}
105105
# with:

0 commit comments

Comments
 (0)