Skip to content

Commit 076fd02

Browse files
authored
Allow warnings for pods affected by Auth API deprecation
1 parent 0030345 commit 076fd02

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/auth.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,6 @@ jobs:
6161
- name: Setup
6262
run: gem install bundler; bundle install
6363
- name: Build
64+
# Allow warnings for deprecated `updateEmail:completion:` API.
6465
run: |
65-
bundle exec pod lib lint FirebaseAuthUI.podspec
66+
bundle exec pod lib lint FirebaseAuthUI.podspec --allow-warnings

.github/workflows/emailauth.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ jobs:
6565
- name: Setup
6666
run: gem install bundler; bundle install
6767
- name: Build
68+
# Allow warnings for deprecated `updateEmail:completion:` API.
6869
run: |
6970
bundle exec pod lib lint FirebaseEmailAuthUI.podspec \
70-
--include-podspecs=FirebaseAuthUI.podspec
71+
--include-podspecs=FirebaseAuthUI.podspec \
72+
--allow-warnings

0 commit comments

Comments
 (0)