Skip to content

Commit

Permalink
Inject PGP signing key and passphrase via env var (#212)
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Philipp <marc@gradle.com>
  • Loading branch information
marcphilipp committed Sep 11, 2023
1 parent 1c64227 commit 90ab626
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .teamcity/settings.kts
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ project {
params {
param("env.ORG_GRADLE_PROJECT_artifactoryUsername", "%artifactoryUsername%")
param("env.ORG_GRADLE_PROJECT_artifactoryPassword", "%artifactoryPassword%")
password("env.PGP_SIGNING_KEY", "%pgpSigningKey%")
password("env.PGP_SIGNING_KEY_PASSPHRASE", "%pgpSigningPassphrase%")
}

steps {
Expand Down Expand Up @@ -171,6 +173,8 @@ project {
params {
param("env.GRADLE_PUBLISH_KEY", "%development.plugin.portal.publish.key%")
password("env.GRADLE_PUBLISH_SECRET", "%development.plugin.portal.publish.secret%", display = NORMAL)
password("env.PGP_SIGNING_KEY", "%pgpSigningKey%")
password("env.PGP_SIGNING_KEY_PASSPHRASE", "%pgpSigningPassphrase%")
}
steps {
gradle {
Expand Down Expand Up @@ -199,6 +203,8 @@ project {
password("env.GRGIT_USER", "", label = "GitHub Access Token", display = PROMPT)
param("env.GRADLE_PUBLISH_KEY", "%plugin.portal.publish.key%")
password("env.GRADLE_PUBLISH_SECRET", "%plugin.portal.publish.secret%", display = NORMAL)
password("env.PGP_SIGNING_KEY", "%pgpSigningKey%")
password("env.PGP_SIGNING_KEY_PASSPHRASE", "%pgpSigningPassphrase%")
}
steps {
gradle {
Expand Down

0 comments on commit 90ab626

Please sign in to comment.