Skip to content

Commit 55104ba

Browse files
authored
Added fix for the ci when downloading the zip file (#67)
1 parent 6adf9f1 commit 55104ba

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,10 @@ jobs:
2727
path: build/Firebase-6.17.0.zip
2828
key: key-Firebase-6.17.0
2929
restore-keys: key-Firebase-6.17.0
30+
- name: Download Firebase
31+
run: ./gradlew downloadIOSFirebaseZipFile
3032
- name: Expand Zip
31-
if: steps.cache-key.outputs.cache-hit == 'true'
3233
run: unzip build/Firebase-6.17.0.zip -d build
33-
- name: Download Unzip Firebase
34-
run: ./gradlew unzipIOSFirebase
3534
- name: Publish
3635
uses: eskatos/gradle-command-action@v1
3736
with:

.github/workflows/pull_request.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,10 @@ jobs:
2727
path: build/Firebase-6.17.0.zip
2828
key: key-Firebase-6.17.0
2929
restore-keys: key-Firebase-6.17.0
30+
- name: Download Firebase
31+
run: ./gradlew downloadIOSFirebaseZipFile
3032
- name: Expand Zip
31-
if: steps.cache-key.outputs.cache-hit == 'true'
3233
run: unzip build/Firebase-6.17.0.zip -d build
33-
- name: Download Unzip Firebase
34-
run: ./gradlew unzipIOSFirebase
3534
- name: Assemble
3635
run: ./gradlew assemble
3736
- name: Run JS Tests

0 commit comments

Comments
 (0)