Skip to content

Commit eeeb0ac

Browse files
committed
Merge branch 'main' into nc/quickstarts
2 parents 557490f + dff30fe commit eeeb0ac

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

.github/workflows/common_quickstart.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,17 @@ jobs:
9696
${{ inputs.run_tests }}
9797
# Failure sequence to upload artifact.
9898
- id: lowercase_product
99-
if: ${{ failure() }}
99+
if: failure()
100100
run: |
101101
lowercase_product=$(echo "${{ inputs.product }}" | tr '[:upper:]' '[:lower:]')
102102
echo "lowercase_product=$lowercase_product" >> $GITHUB_OUTPUT
103103
- name: Remove data before upload.
104-
if: ${{ failure() }}
104+
if: failure()
105105
run: scripts/remove_data.sh ${{ steps.lowercase_product.outputs.lowercase_product }}
106106
- uses: actions/upload-artifact@v4
107-
if: ${{ failure() }}
107+
if: failure()
108108
with:
109109
name: quickstart_artifacts_${{ steps.lowercase_product.outputs.lowercase_product }}
110-
path: quickstart-ios/
110+
path: |
111+
quickstart-ios/
112+
!quickstart-ios/**/GoogleService-Info.plist

.github/workflows/zip.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -499,13 +499,15 @@ jobs:
499499
- name: Test Quickstart
500500
run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
501501
- name: Remove data before upload
502-
if: ${{ failure() }}
502+
if: failure()
503503
run: scripts/remove_data.sh firebaseai
504504
- uses: actions/upload-artifact@v4
505-
if: ${{ failure() }}
505+
if: failure()
506506
with:
507-
name: quickstart_artifacts_firebaseai
508-
path: quickstart-ios/
507+
name: quickstart_artifacts_firebaseai_${{ matrix.artifact }}_${{ matrix.build-env.os }}
508+
path: |
509+
quickstart-ios/
510+
!quickstart-ios/**/GoogleService-Info.plist
509511
510512
quickstart_framework_firestore:
511513
needs: packaging_done

0 commit comments

Comments
 (0)