Skip to content

Commit 30cc1f9

Browse files
authoredApr 3, 2023
Removed carthage and added cocoapods plugin (#349)
1 parent 249cb19 commit 30cc1f9

File tree

70 files changed

+365
-848
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+365
-848
lines changed
 

‎.github/workflows/publish.yml

-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ jobs:
2525
arguments: :updateVersions
2626
- name: Grant execute permission for gradlew
2727
run: chmod +x gradlew
28-
- name: Install Carthage
29-
run: brew install carthage
3028
- name: Publish Firebase App
3129
uses: eskatos/gradle-command-action@v1
3230
with:

‎.github/workflows/pull_request.yml

+13-4
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,26 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v2
20-
- name: Gradle cache
21-
uses: gradle/gradle-build-action@v2
20+
- name: Cocoapods cache
21+
uses: actions/cache@v3
22+
id: cocoapods-cache
23+
with:
24+
path: |
25+
~/.cocoapods
26+
~/Library/Caches/CocoaPods
27+
*/build/cocoapods
28+
*/build/classes
29+
key: cocoapods-cache
2230
- name: Set up JDK
2331
uses: actions/setup-java@v2
2432
with:
2533
distribution: 'zulu'
2634
java-version: '11'
35+
cache: gradle
36+
- name: Gradle cache
37+
uses: gradle/gradle-build-action@v2
2738
- name: Grant execute permission for gradlew
2839
run: chmod +x gradlew
29-
- name: Install Carthage
30-
run: brew list carthage || brew install carthage
3140
- name: Install Firebase tools
3241
run: npm install -g firebase-tools
3342
- name: Start Firebase emulator

0 commit comments

Comments
 (0)
Failed to load comments.