fix(ios) fix lite SDK release process

pull/12152/head jitsi-meet_7757
Saúl Ibarra Corretgé 3 years ago committed by Saúl Ibarra Corretgé
parent 247c54b6c6
commit ede97584f2
  1. 4
      ios/scripts/release-sdk-lite.sh

@ -15,7 +15,7 @@ echo "Releasing Jitsi Meet SDK Lite ${SDK_VERSION}"
pushd ${RELEASE_REPO}
# Generate podspec file
cat JitsiMeetSDKLite.podspec.tpl | sed -e s/VERSION/${SDK_VERSION}/g > JitsiMeetSDKLite.podspec
cat JitsiMeetSDKLite.podspec.tpl | sed -e s/VERSION/${SDK_VERSION}-lite/g > JitsiMeetSDKLite.podspec
# Cleanup
rm -rf lite/Frameworks/*
@ -66,7 +66,7 @@ cp -a ${PROJECT_REPO}/ios/sdk/out/JitsiMeetSDK.xcframework lite/Frameworks/
if [[ $DO_GIT_TAG == 1 ]]; then
git add -A .
git commit -m "${SDK_VERSION} lite"
git tag "lite-${SDK_VERSION}"
git tag "${SDK_VERSION}-lite"
fi
popd

Loading…
Cancel
Save