Skip to content

Commit

Permalink
fix signing setup
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusMcCloud committed Oct 13, 2023
1 parent 4c26fe6 commit ee1fcdc
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions datatypes-cose/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,12 @@ publishing {
signing.isRequired = false
}
}
}

signing {
val signingKeyId: String? by project
val signingKey: String? by project
val signingPassword: String? by project
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
sign(publishing.publications)
}
8 changes: 8 additions & 0 deletions datatypes-jws/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,12 @@ publishing {
signing.isRequired = false
}
}
}

signing {
val signingKeyId: String? by project
val signingKey: String? by project
val signingPassword: String? by project
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
sign(publishing.publications)
}
8 changes: 8 additions & 0 deletions datatypes/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,12 @@ publishing {
signing.isRequired = false
}
}
}

signing {
val signingKeyId: String? by project
val signingKey: String? by project
val signingPassword: String? by project
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
sign(publishing.publications)
}

0 comments on commit ee1fcdc

Please sign in to comment.