Skip to content

Commit

Permalink
Merge pull request #102 from invertase/feat/110
Browse files Browse the repository at this point in the history
feat: update script for 11.0.0
  • Loading branch information
Lyokone authored Aug 8, 2024
2 parents ba381f9 + 70a1a73 commit 1b90d9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/scripts/extract-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ firebase_firestore_version=$(python3 -c 'import json; data = json.load(open("'"$
firebase_firestore_grpc_version=$(python3 -c 'import json; data = json.load(open("'"$PODSPEC_FILE"'")); print(data["dependencies"]["gRPC-C++"][0].replace("~> ", ""))')
# If the gRPC version is 1.62.0, set it to 1.62.1
# Since the tag is missing for 1.62.0.
if [ "$firebase_firestore_grpc_version" = "1.62.0" ]; then
echo "Overriding gRPC version to 1.62.1"
firebase_firestore_grpc_version="1.62.1"
if [ "$firebase_firestore_grpc_version" = "1.65.0" ]; then
echo "Overriding gRPC version to 1.65.1"
firebase_firestore_grpc_version="1.65.1"
fi

# Extract leveldb version
Expand Down

0 comments on commit 1b90d9f

Please sign in to comment.