-
Notifications
You must be signed in to change notification settings - Fork 475
/
release.sh
executable file
·30 lines (24 loc) · 1.15 KB
/
release.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env bash
set -euxo pipefail
pod spec lint FirebaseDatabaseUI.podspec && \
pod spec lint --allow-warnings FirebaseAuthUI.podspec && \
pod spec lint FirebaseStorageUI.podspec && \
pod spec lint FirebaseFirestoreUI.podspec
pod trunk push FirebaseDatabaseUI.podspec && \
pod trunk push --allow-warnings FirebaseAuthUI.podspec && \
pod trunk push FirebaseStorageUI.podspec && \
pod trunk push FirebaseFirestoreUI.podspec
pod spec lint FirebaseAnonymousAuthUI.podspec && \
pod spec lint --allow-warnings FirebaseEmailAuthUI.podspec && \
pod spec lint FirebaseFacebookAuthUI.podspec && \
pod spec lint FirebaseGoogleAuthUI.podspec && \
pod spec lint FirebaseOAuthUI.podspec && \
pod spec lint --allow-warnings FirebasePhoneAuthUI.podspec
pod trunk push FirebaseAnonymousAuthUI.podspec && \
pod trunk push --allow-warnings FirebaseEmailAuthUI.podspec && \
pod trunk push FirebaseFacebookAuthUI.podspec && \
pod trunk push FirebaseGoogleAuthUI.podspec && \
pod trunk push FirebaseOAuthUI.podspec && \
pod trunk push --allow-warnings FirebasePhoneAuthUI.podspec
pod spec lint FirebaseUI.podspec && \
pod trunk push FirebaseUI.podspec