Skip to content

Commit 78b1b0b

Browse files
committed
chore: remove "Signing publications" from the logging output
The message was not adding much, and it was emitted during configuration phase, so it was not even aligned with the actual signing work. Signed-off-by: Vladimir Sitnikov <[email protected]>
1 parent 5f17fc9 commit 78b1b0b

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

sigstore-gradle/sigstore-gradle-sign-plugin/src/main/kotlin/dev.sigstore.sign.gradle.kts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,13 @@
1414
* limitations under the License.
1515
*
1616
*/
17-
import dev.sigstore.sign.SigstoreSignExtension
18-
1917
plugins {
2018
id("dev.sigstore.sign-base")
2119
id("maven-publish")
2220
}
2321

2422
plugins.withId("publishing") {
25-
logger.lifecycle("Signing publications")
26-
configure<SigstoreSignExtension> {
27-
sign(publications = the<PublishingExtension>().publications)
23+
sigstoreSign {
24+
sign(publications = publishing.publications)
2825
}
2926
}

0 commit comments

Comments
 (0)