Skip to content

Commit

Permalink
[Infra] Update zip.yml to prevent upload error (#13297)
Browse files Browse the repository at this point in the history
  • Loading branch information
ncooke3 authored Jul 17, 2024
1 parent f1a8814 commit d69a2f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -500,14 +500,14 @@ jobs:
quickstart-ios/firestore/GoogleService-Info.plist "$plist_secret"
- name: Test Quickstart
run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
- name: Remove data before upload
- name: Remove data before upload and zip directory to reduce upload size.
if: ${{ failure() }}
run: scripts/remove_data.sh firestore
run: scripts/remove_data.sh firestore; zip -r --symlinks quickstart_artifacts_firestore.zip quickstart-ios/
- uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: quickstart_artifacts_firestore
path: quickstart-ios/
name: quickstart_artifacts_firestore_${{ matrix.artifact }}_${{ matrix.os }}
path: quickstart_artifacts_firestore.zip

check_framework_firestore_symbols:
# Don't run on private repo.
Expand Down

0 comments on commit d69a2f7

Please sign in to comment.