1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #!/bin/bash
-
- set -e -u
-
- THIS_DIR=$(cd -P "$(dirname "$(readlink "${BASH_SOURCE[0]}" || echo "${BASH_SOURCE[0]}")")" && pwd)
- PROJECT_REPO=$(realpath ${THIS_DIR}/../..)
- RELEASE_REPO=$(realpath ${THIS_DIR}/../../../jitsi-meet-ios-sdk-releases)
- SDK_VERSION=$(/usr/libexec/PlistBuddy -c "Print CFBundleShortVersionString" ${THIS_DIR}/../sdk/src/Info.plist)
-
-
- echo "Releasing Jitsi Meet SDK ${SDK_VERSION}"
-
- pushd ${RELEASE_REPO}
-
- # Generate podspec file
- cat JitsiMeetSDK.podspec.tpl | sed -e s/VERSION/${SDK_VERSION}/g > JitsiMeetSDK.podspec
-
- # Cleanup
- rm -rf Frameworks/*
-
- popd
-
- # Build the SDK
- pushd ${PROJECT_REPO}
- rm -rf ios/sdk/JitsiMeet.framework
- xcodebuild -workspace ios/jitsi-meet.xcworkspace -scheme JitsiMeet -destination='generic/platform=iOS' -configuration Release archive
- git tag -a ios-sdk-${SDK_VERSION}
- popd
-
- pushd ${RELEASE_REPO}
-
- # Put the new files in the repo
- cp -r ${PROJECT_REPO}/ios/sdk/JitsiMeet.framework Frameworks/
- cp -r ${PROJECT_REPO}/node_modules/react-native-webrtc/ios/WebRTC.framework Frameworks/
-
- # Add all files to git
- git add -A .
- git commit -m "${SDK_VERSION}"
- git tag ${SDK_VERSION}
-
- popd
-
- echo "Finished! Don't forget to push the tags and releases repo artifacts."
- echo "The new pod can be pushed to CocoaPods by doing: pod trunk push JitsiMeetSDK.podspec"
|