From 8b8c05180235a45167212ab665a505dbd8edf3a7 Mon Sep 17 00:00:00 2001 From: Carl Poole Date: Fri, 29 May 2020 18:02:02 -0500 Subject: [PATCH] chore(ios): remove pod deployment (#3017) --- scripts/deploy.sh | 5 +---- scripts/deploy/pods.sh | 15 --------------- 2 files changed, 1 insertion(+), 19 deletions(-) delete mode 100644 scripts/deploy/pods.sh diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 6450a8c20d..5ce12b24ad 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -23,7 +23,4 @@ git commit -m "Release v$LERNA_VERSION" git tag $LERNA_VERSION -m $LERNA_VERSION git push --follow-tags origin master -#rm -rf capacitor-ios - -# Do the actual native deploys second, because they require tags/releases in github -bash scripts/deploy/pods.sh +#rm -rf capacitor-ios \ No newline at end of file diff --git a/scripts/deploy/pods.sh b/scripts/deploy/pods.sh deleted file mode 100644 index 2a4f26c789..0000000000 --- a/scripts/deploy/pods.sh +++ /dev/null @@ -1,15 +0,0 @@ -set -e - -echo "Deploying iOS Pods v$POD_VERSION" - -# Publish CapacitorCordova first -pod trunk push CapacitorCordova.podspec --allow-warnings - -# Needed to ensure we can "see" the updated version of CapacitorCordova -pod repo update - -# Finally, publish Capacitor -pod trunk push Capacitor.podspec --allow-warnings - -# Again, needed to make sure we see the latest Capacitor locally -pod repo update \ No newline at end of file