Skip to content

Commit d6cb3ee

Browse files
committed
Fix for signing release
1 parent bf82d53 commit d6cb3ee

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ mavenPublishing{
4747
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
4848

4949
// Only sign if signing is set up
50-
if(project.hasProperty("signing.keyId"))
50+
if(project.hasProperty("signing.keyId") || project.hasProperty("signing.signingInMemoryKey"))
5151
signAllPublications()
5252

5353
pom{

java/lsp/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ mavenPublishing{
3535
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
3636

3737
// Only sign if signing is set up
38-
if(project.hasProperty("signing.keyId"))
38+
if(project.hasProperty("signing.keyId") || project.hasProperty("signing.signingInMemoryKey"))
3939
signAllPublications()
4040

4141
pom{

java/preprocessor/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ mavenPublishing{
4848
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
4949

5050
// Only sign if signing is set up
51-
if(project.hasProperty("signing.keyId"))
51+
if(project.hasProperty("signing.keyId") || project.hasProperty("signing.signingInMemoryKey"))
5252
signAllPublications()
5353

5454
pom{

0 commit comments

Comments
 (0)