build_ios: Print xcode version

This commit is contained in:
Vishesh Handa
2020-11-14 23:35:42 +01:00
parent 4a69524bff
commit 90fe13d66c

View File

@ -32,6 +32,8 @@ echo "Build Number: $BUILD_NUM"
BUILD_NAME=$(cat pubspec.yaml | grep version | awk '{ print $2 }' | awk -F "+" '{ print $1 }') BUILD_NAME=$(cat pubspec.yaml | grep version | awk '{ print $2 }' | awk -F "+" '{ print $1 }')
echo "Build Name: $BUILD_NAME" echo "Build Name: $BUILD_NAME"
xcodebuild -version
flutter build ios --release --no-codesign --build-number="$BUILD_NUM" --build-name="$BUILD_NAME" flutter build ios --release --no-codesign --build-number="$BUILD_NUM" --build-name="$BUILD_NAME"
cd ios cd ios