Skip to content

Commit e4475e5

Browse files
committed
Disable signing iOS artifacts
1 parent 94e6f84 commit e4475e5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

aws-crt-kotlin/build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,14 @@ configureIosSimulatorTasks()
100100
// Publishing
101101
configurePublishing("aws-crt-kotlin")
102102

103+
// Temporary disable signing iOS artifacts because they are having trouble finding the signing key/passphrase
104+
// which are set via environment variables. Maybe the environment is not passed through to iOS builds?
105+
tasks.withType<Sign>().configureEach {
106+
if (name.contains("ios", ignoreCase = true)) {
107+
enabled = false
108+
}
109+
}
110+
103111
val linuxTargets: List<String> = listOf(
104112
"linuxX64",
105113
"linuxArm64",

0 commit comments

Comments
 (0)