From d336acda8e1f2754826fc65898ee3dc6bcc32cdf Mon Sep 17 00:00:00 2001 From: Carl Poole Date: Fri, 29 May 2020 17:39:59 -0500 Subject: [PATCH] chore(ios): remove pod deployment --- scripts/deploy.sh | 3 +-- scripts/deploy/pods.sh | 15 --------------- 2 files changed, 1 insertion(+), 17 deletions(-) delete mode 100644 scripts/deploy/pods.sh diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 257e72be9e..23d17249cb 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -26,5 +26,4 @@ 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/android.sh -bash scripts/deploy/pods.sh +bash scripts/deploy/android.sh \ 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