We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae25542 commit 15eb852Copy full SHA for 15eb852
.github/workflows/spm.yml
@@ -21,6 +21,9 @@ concurrency:
21
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
22
cancel-in-progress: true
23
24
+env:
25
+ FIREBASE_CI: true
26
+
27
jobs:
28
spm-package-resolved:
29
env:
Package.swift
@@ -419,6 +419,7 @@ let package = Package(
419
"ObjC", "Public",
420
],
421
resources: [.process("Resources/PrivacyInfo.xcprivacy")],
422
+ swiftSettings: Context.environment["FIREBASE_CI"] != nil ? [.define("FIREBASE_CI")] : [],
423
linkerSettings: [
424
.linkedFramework("Security"),
425
.linkedFramework("SafariServices", .when(platforms: [.iOS])),
0 commit comments