File tree Expand file tree Collapse file tree 4 files changed +6
-11
lines changed Expand file tree Collapse file tree 4 files changed +6
-11
lines changed Original file line number Diff line number Diff line change 49
49
prerelease : ${{ inputs.prerelease }}
50
50
signing_key_id : ${{ env.SIGNING_KEY_ID }}
51
51
signing_key_passphrase : ${{ env.SIGNING_KEY_PASSPHRASE }}
52
- code_signing_keyring : ' code-signing-keyring.gpg '
52
+ code_signing_keyring : ${{ inputs.code_signing_keyring }}
53
53
sonatype_username : ${{ env.SONATYPE_USER_NAME }}
54
54
sonatype_password : ${{ env.SONATYPE_PASSWORD }}
55
55
Original file line number Diff line number Diff line change 47
47
prerelease : ${{ inputs.prerelease }}
48
48
signing_key_id : ${{ env.SIGNING_KEY_ID }}
49
49
signing_key_passphrase : ${{ env.SIGNING_KEY_PASSPHRASE }}
50
- code_signing_keyring : ' code-signing-keyring.gpg'
50
+ code_signing_keyring : ${{ github.workspace }}/ code-signing-keyring.gpg
51
51
sonatype_username : ${{ env.SONATYPE_USER_NAME }}
52
52
sonatype_password : ${{ env.SONATYPE_PASSWORD }}
53
53
aws_role : ${{ vars.AWS_ROLE_ARN }}
Original file line number Diff line number Diff line change @@ -17,9 +17,7 @@ plugins {
17
17
repositories {
18
18
// Use Maven Central for resolving dependencies.
19
19
mavenCentral()
20
- maven {
21
- url ' https://oss.sonatype.org/content/repositories/snapshots/'
22
- }
20
+ maven { url " https://oss.sonatype.org/content/groups/public/" }
23
21
}
24
22
25
23
allprojects {
@@ -73,10 +71,7 @@ publishing {
73
71
nexusPublishing {
74
72
clientTimeout = java.time.Duration . ofMinutes(2 ) // we've seen extremely long delays in creating repositories
75
73
repositories {
76
- sonatype {
77
- username = ossrhUsername
78
- password = ossrhPassword
79
- }
74
+ sonatype ()
80
75
}
81
76
}
82
77
Original file line number Diff line number Diff line change @@ -4,5 +4,5 @@ version=0.1.0
4
4
5
5
# The following empty ossrh properties are used by LaunchDarkly's internal integration testing framework
6
6
# and should not be needed for typical development purposes (including by third-party developers).
7
- ossrhUsername =
8
- ossrhPassword =
7
+ sonatypeUsername =
8
+ sonatypePassword =
You can’t perform that action at this time.
0 commit comments