File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ private fun MavenPublishBaseExtension.signIfKeyPresent(project: Project) {
8181 val keyPassword = System .getenv(" PASSWORD" )
8282
8383 if (keyBytes != null && keyPassword != null ) {
84- println (" Signing artifacts with in-memory PGP key (.gpg)" )
84+ project.logger.info (" Signing artifacts with in-memory PGP key (.gpg)" )
8585 project.extensions.configure<SigningExtension >(" signing" ) {
8686 // For binary .gpg keys
8787 if (keyId == null ) {
@@ -92,7 +92,7 @@ private fun MavenPublishBaseExtension.signIfKeyPresent(project: Project) {
9292 signAllPublications()
9393 }
9494 } else {
95- println (" Skipping signing of artifacts: PGP key or password not found in environment variables" )
95+ project.logger.info (" Skipping signing of artifacts: PGP key or password not found in environment variables" )
9696 }
9797}
9898
You can’t perform that action at this time.
0 commit comments