-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[stage-vote-release-plugin] signingKey instead of secretKeyRingFile #68
Comments
That is doable if you post-configure the signing plugin. For instance, something like plugins.withId("signing") {
configure<SigningExtension> {
useInMemoryPgpKeys(.., ...)
}
} I guess you could add it to https://github.com/testng-team/testng/blob/master/build-logic/publishing/src/main/kotlin/testng.maven-publish.gradle.kts or create WDYT? |
That sounds great. I will try that and keep you in touch. Maybe you should add a documention section for the next users. |
It worked like a charm, thanks! testng-team/testng@c7e289b For my understanding, is it possible to replace |
That depends. If you have The meaning is:
|
Ok, clear. Thanks for the explanations! |
Hi,
Because the GPG export can have some issues when a passphrase is needed in CI, we want to use "in-memory ascii-armored keys" and provide
-Psigning.signingKey
option instead of the default-Psigning.secretKeyRingFile
option.Is it possible?
The text was updated successfully, but these errors were encountered: