Skip to content

Commit

Permalink
Merge pull request #316 from gradle/pshevche/fix-release-tagging
Browse files Browse the repository at this point in the history
Try to fix the post-release tag creation
  • Loading branch information
pshevche authored Sep 11, 2024
2 parents 9b870cc + 419f414 commit 9dd51e1
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .teamcity/settings.kts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,21 @@ project {
"releaseScope", "", label = "releaseScope", description = "The scope of the release",
display = PROMPT, options = listOf("major", "minor", "patch")
)
password("env.GRGIT_USER", "", label = "GitHub Access Token", display = PROMPT)
text(
"env.GIT_USERNAME",
"",
label = "GitHub username",
description = "Your GitHub username",
display = PROMPT,
allowEmpty = false
)
password(
"env.GIT_PASSWORD",
"",
label = "GitHub Access Token",
description = "Your personal access token with repo permission",
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%")
Expand Down

0 comments on commit 9dd51e1

Please sign in to comment.