Skip to content

Commit 2440f56

Browse files
authored
Disable zip testing in private repo. (#5968)
Update database, dynamiclinks and storage.
1 parent bb16446 commit 2440f56

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/database.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ jobs:
5959
FRAMEWORK_ZIP: "Firebase-actions-dir.zip"
6060
SDK: "Database"
6161
runs-on: macOS-latest
62-
# Make sure tests run after the zip workflow finishes.
63-
if: github.event_name == 'schedule'
62+
# Don't run on private repo.
63+
if: github.event_name == 'schedule' && github.repository != 'FirebasePrivate/firebase-ios-sdk'
6464
steps:
6565
- uses: actions/checkout@v2
6666
- name: Pull zip from GCS

.github/workflows/dynamiclinks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ jobs:
5050
FRAMEWORK_ZIP: "Firebase-actions-dir.zip"
5151
SDK: "DynamicLinks"
5252
runs-on: macOS-latest
53-
# Make sure tests run after the zip workflow finishes.
54-
if: github.event_name == 'schedule'
53+
# Don't run on private repo.
54+
if: github.event_name == 'schedule' && github.repository != 'FirebasePrivate/firebase-ios-sdk'
5555
steps:
5656
- uses: actions/checkout@v2
5757
- name: Pull zip from GCS

.github/workflows/storage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ jobs:
6161
FRAMEWORK_ZIP: "Firebase-actions-dir.zip"
6262
SDK: "Storage"
6363
runs-on: macOS-latest
64-
# Make sure tests run after the zip workflow finishes.
65-
if: github.event_name == 'schedule'
64+
# Don't run on private repo.
65+
if: github.event_name == 'schedule' && github.repository != 'FirebasePrivate/firebase-ios-sdk'
6666
steps:
6767
- uses: actions/checkout@v2
6868
- name: Pull zip from GCS

0 commit comments

Comments
 (0)