Skip to content

Commit c72026c

Browse files
committed
maybe
1 parent 40ce259 commit c72026c

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

.github/workflows/zip.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
if: |
5050
github.repository == 'firebase/firebase-ios-sdk' &&
5151
contains(fromJSON('["schedule", "pull_request", "workflow_dispatch"]'), github.event_name) &&
52-
github.event.inputs.zip_run_id == '' && github.env.PINNED_RUN_ID == ''
52+
github.event.inputs.zip_run_id == '' && env.PINNED_RUN_ID == ''
5353
runs-on: macos-14
5454
steps:
5555
- uses: actions/checkout@v4
@@ -80,7 +80,7 @@ jobs:
8080
if: |
8181
github.repository == 'firebase/firebase-ios-sdk' &&
8282
contains(fromJSON('["schedule", "pull_request", "workflow_dispatch"]'), github.event_name) &&
83-
github.event.inputs.zip_run_id == '' && github.env.PINNED_RUN_ID == ''
83+
github.event.inputs.zip_run_id == '' && env.PINNED_RUN_ID == ''
8484
runs-on: macos-14
8585
steps:
8686
- uses: actions/checkout@v4
@@ -124,7 +124,7 @@ jobs:
124124

125125
quickstart_framework_abtesting:
126126
needs: package-head
127-
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || github.env.PINNED_RUN_ID != '') }}
127+
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || env.PINNED_RUN_ID != '') }}
128128
env:
129129
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
130130
SDK: "ABTesting"
@@ -141,7 +141,7 @@ jobs:
141141
uses: actions/[email protected]
142142
with:
143143
name: ${{ matrix.artifact }}
144-
run-id: ${{ github.event.inputs.zip_run_id || github.env.PINNED_RUN_ID != '' || github.run_id }}
144+
run-id: ${{ github.event.inputs.zip_run_id || env.PINNED_RUN_ID != '' || github.run_id }}
145145
github-token: ${{ secrets.GITHUB_TOKEN }}
146146
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
147147
- name: Xcode
@@ -177,7 +177,7 @@ jobs:
177177

178178
quickstart_framework_auth:
179179
needs: package-head
180-
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || github.env.PINNED_RUN_ID != '') }}
180+
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || env.PINNED_RUN_ID != '') }}
181181
env:
182182
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
183183
SDK: "Authentication"
@@ -195,7 +195,7 @@ jobs:
195195
uses: actions/[email protected]
196196
with:
197197
name: ${{ matrix.artifact }}
198-
run-id: ${{ github.event.inputs.zip_run_id || github.env.PINNED_RUN_ID != '' || github.run_id }}
198+
run-id: ${{ github.event.inputs.zip_run_id || env.PINNED_RUN_ID != '' || github.run_id }}
199199
github-token: ${{ secrets.GITHUB_TOKEN }}
200200
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
201201
- name: Xcode
@@ -228,7 +228,7 @@ jobs:
228228

229229
quickstart_framework_config:
230230
needs: package-head
231-
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || github.env.PINNED_RUN_ID != '') }}
231+
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || env.PINNED_RUN_ID != '') }}
232232
env:
233233
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
234234
SDK: "Config"
@@ -245,7 +245,7 @@ jobs:
245245
uses: actions/[email protected]
246246
with:
247247
name: ${{ matrix.artifact }}
248-
run-id: ${{ github.event.inputs.zip_run_id || github.env.PINNED_RUN_ID != '' || github.run_id }}
248+
run-id: ${{ github.event.inputs.zip_run_id || env.PINNED_RUN_ID != '' || github.run_id }}
249249
github-token: ${{ secrets.GITHUB_TOKEN }}
250250
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
251251
- name: Xcode
@@ -277,7 +277,7 @@ jobs:
277277

278278
quickstart_framework_crashlytics:
279279
needs: package-head
280-
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || github.env.PINNED_RUN_ID != '') }}
280+
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || env.PINNED_RUN_ID != '') }}
281281
env:
282282
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
283283
SDK: "Crashlytics"
@@ -294,7 +294,7 @@ jobs:
294294
uses: actions/[email protected]
295295
with:
296296
name: ${{ matrix.artifact }}
297-
run-id: ${{ github.event.inputs.zip_run_id || github.env.PINNED_RUN_ID != '' || github.run_id }}
297+
run-id: ${{ github.event.inputs.zip_run_id || env.PINNED_RUN_ID != '' || github.run_id }}
298298
github-token: ${{ secrets.GITHUB_TOKEN }}
299299
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
300300
- name: Xcode
@@ -343,7 +343,7 @@ jobs:
343343

344344
quickstart_framework_database:
345345
needs: package-head
346-
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || github.env.PINNED_RUN_ID != '') }}
346+
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || env.PINNED_RUN_ID != '') }}
347347
env:
348348
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
349349
SDK: "Database"
@@ -359,7 +359,7 @@ jobs:
359359
uses: actions/[email protected]
360360
with:
361361
name: ${{ matrix.artifact }}
362-
run-id: ${{ github.event.inputs.zip_run_id || github.env.PINNED_RUN_ID != '' || github.run_id }}
362+
run-id: ${{ github.event.inputs.zip_run_id || env.PINNED_RUN_ID != '' || github.run_id }}
363363
github-token: ${{ secrets.GITHUB_TOKEN }}
364364
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
365365
- name: Xcode
@@ -395,7 +395,7 @@ jobs:
395395

396396
quickstart_framework_firestore:
397397
needs: package-head
398-
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || github.env.PINNED_RUN_ID != '') }}
398+
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || env.PINNED_RUN_ID != '') }}
399399
env:
400400
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
401401
SDK: "Firestore"
@@ -412,7 +412,7 @@ jobs:
412412
uses: actions/[email protected]
413413
with:
414414
name: ${{ matrix.artifact }}
415-
run-id: ${{ github.event.inputs.zip_run_id || github.env.PINNED_RUN_ID != '' || github.run_id }}
415+
run-id: ${{ github.event.inputs.zip_run_id || env.PINNED_RUN_ID != '' || github.run_id }}
416416
github-token: ${{ secrets.GITHUB_TOKEN }}
417417
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
418418
- name: Xcode
@@ -452,7 +452,7 @@ jobs:
452452

453453
check_framework_firestore_symbols:
454454
needs: package-head
455-
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || github.env.PINNED_RUN_ID != '') }}
455+
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || env.PINNED_RUN_ID != '') }}
456456
env:
457457
FIREBASECI_USE_LATEST_GOOGLEAPPMEASUREMENT: 1
458458
runs-on: macos-14
@@ -464,7 +464,7 @@ jobs:
464464
uses: actions/[email protected]
465465
with:
466466
name: Firebase-actions-dir
467-
run-id: ${{ github.event.inputs.zip_run_id || github.env.PINNED_RUN_ID != '' || github.run_id }}
467+
run-id: ${{ github.event.inputs.zip_run_id || env.PINNED_RUN_ID != '' || github.run_id }}
468468
github-token: ${{ secrets.GITHUB_TOKEN }}
469469
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
470470
- name: Setup Bundler
@@ -484,7 +484,7 @@ jobs:
484484
485485
quickstart_framework_inappmessaging:
486486
needs: package-head
487-
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || github.env.PINNED_RUN_ID != '') }}
487+
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || env.PINNED_RUN_ID != '') }}
488488
env:
489489
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
490490
SDK: "InAppMessaging"
@@ -501,7 +501,7 @@ jobs:
501501
uses: actions/[email protected]
502502
with:
503503
name: ${{ matrix.artifact }}
504-
run-id: ${{ github.event.inputs.zip_run_id || github.env.PINNED_RUN_ID != '' || github.run_id }}
504+
run-id: ${{ github.event.inputs.zip_run_id || env.PINNED_RUN_ID != '' || github.run_id }}
505505
github-token: ${{ secrets.GITHUB_TOKEN }}
506506
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
507507
- name: Xcode
@@ -537,7 +537,7 @@ jobs:
537537

538538
quickstart_framework_messaging:
539539
needs: package-head
540-
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || github.env.PINNED_RUN_ID != '') }}
540+
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || env.PINNED_RUN_ID != '') }}
541541
env:
542542
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
543543
SDK: "Messaging"
@@ -554,7 +554,7 @@ jobs:
554554
uses: actions/[email protected]
555555
with:
556556
name: ${{ matrix.artifact }}
557-
run-id: ${{ github.event.inputs.zip_run_id || github.env.PINNED_RUN_ID != '' || github.run_id }}
557+
run-id: ${{ github.event.inputs.zip_run_id || env.PINNED_RUN_ID != '' || github.run_id }}
558558
github-token: ${{ secrets.GITHUB_TOKEN }}
559559
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
560560
- name: Xcode
@@ -590,7 +590,7 @@ jobs:
590590

591591
quickstart_framework_storage:
592592
needs: package-head
593-
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || github.env.PINNED_RUN_ID != '') }}
593+
if: ${{ !cancelled() && (success() || github.event.inputs.zip_run_id != '' || env.PINNED_RUN_ID != '') }}
594594
env:
595595
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
596596
SDK: "Storage"
@@ -607,7 +607,7 @@ jobs:
607607
uses: actions/[email protected]
608608
with:
609609
name: ${{ matrix.artifact }}
610-
run-id: ${{ github.event.inputs.zip_run_id || github.env.PINNED_RUN_ID != '' || github.run_id }}
610+
run-id: ${{ github.event.inputs.zip_run_id || env.PINNED_RUN_ID != '' || github.run_id }}
611611
github-token: ${{ secrets.GITHUB_TOKEN }}
612612
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
613613
- name: Xcode

0 commit comments

Comments
 (0)