Skip to content

Commit

Permalink
Merge pull request #105 from invertase/feat/Test
Browse files Browse the repository at this point in the history
add more logging
  • Loading branch information
Lyokone authored Aug 8, 2024
2 parents ef9ef9a + a186bac commit a78da3a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/scripts/commit-and-publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ fi
pod repo add cocoapods "https://github.com/CocoaPods/Specs.git"

pod repo update
pod spec which FirebaseFirestoreGRPCBoringSSLBinary --version="$firebase_firestore_grpc_version"
echo "Running 'pod spec which FirebaseFirestoreGRPCBoringSSLBinary --version=$firebase_firestore_grpc_version'"
pod spec which FirebaseFirestoreGRPCBoringSSLBinary --version="$firebase_firestore_grpc_version"
exit_code=$?
if [ $exit_code -eq 1 ]; then
pod trunk push FirebaseFirestoreGRPCBoringSSLBinary.podspec --allow-warnings --skip-tests --skip-import-validation --synchronous
Expand All @@ -86,8 +86,8 @@ if [ $exit_code -ne 0 ]; then
fi

pod repo update
pod spec which FirebaseFirestoreAbseilBinary --version="$firebase_firestore_abseil_version"
echo "Running 'pod spec which FirebaseFirestoreAbseilBinary --version=$firebase_firestore_abseil_version'"
pod spec which FirebaseFirestoreAbseilBinary --version="$firebase_firestore_abseil_version"
exit_code=$?
if [ $exit_code -eq 1 ]; then
pod trunk push FirebaseFirestoreAbseilBinary.podspec --allow-warnings --skip-tests --skip-import-validation --synchronous
Expand All @@ -103,8 +103,8 @@ if [ $exit_code -ne 0 ]; then
fi

pod repo update
pod spec which FirebaseFirestoreGRPCCoreBinary --version="$firebase_firestore_grpc_version"
echo "Running 'pod spec which FirebaseFirestoreGRPCCoreBinary --version=$firebase_firestore_grpc_version'"
pod spec which FirebaseFirestoreGRPCCoreBinary --version="$firebase_firestore_grpc_version"
exit_code=$?
if [ $exit_code -eq 1 ]; then
pod trunk push FirebaseFirestoreGRPCCoreBinary.podspec --allow-warnings --skip-tests --skip-import-validation --synchronous
Expand All @@ -120,8 +120,8 @@ if [ $exit_code -ne 0 ]; then
fi

pod repo update
pod spec which FirebaseFirestoreGRPCCPPBinary --version="$firebase_firestore_grpc_version"
echo "Running 'pod spec which FirebaseFirestoreGRPCCPPBinary --version=$firebase_firestore_grpc_version'"
pod spec which FirebaseFirestoreGRPCCPPBinary --version="$firebase_firestore_grpc_version"
exit_code=$?
if [ $exit_code -eq 1 ]; then
pod trunk push FirebaseFirestoreGRPCCPPBinary.podspec --allow-warnings --skip-tests --skip-import-validation --synchronous
Expand All @@ -137,8 +137,8 @@ if [ $exit_code -ne 0 ]; then
fi

pod repo update
pod spec which FirebaseFirestoreInternalBinary --version="$firebase_firestore_version"
echo "Running 'pod spec which FirebaseFirestoreInternalBinary --version=$firebase_firestore_version'"
pod spec which FirebaseFirestoreInternalBinary --version="$firebase_firestore_version"
exit_code=$?
if [ $exit_code -eq 1 ]; then
pod trunk push FirebaseFirestoreInternalBinary.podspec --allow-warnings --skip-tests --skip-import-validation --synchronous
Expand All @@ -154,8 +154,8 @@ if [ $exit_code -ne 0 ]; then
fi

pod repo update
pod spec which FirebaseFirestoreBinary --version="$firebase_firestore_version"
echo "Running 'pod spec which FirebaseFirestoreBinary --version=$firebase_firestore_version'"
pod spec which FirebaseFirestoreBinary --version="$firebase_firestore_version"
exit_code=$?
if [ $exit_code -eq 1 ]; then
pod trunk push FirebaseFirestoreBinary.podspec --allow-warnings --skip-tests --skip-import-validation --synchronous
Expand Down

0 comments on commit a78da3a

Please sign in to comment.