File tree 2 files changed +12
-11
lines changed
2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 60
60
NEW_VERSION=$(echo "${GITHUB_REF}" | cut -d "/" -f3)
61
61
IMAGE=${IMAGE_NAME}:${NEW_VERSION}
62
62
echo "Releasing new version ${NEW_VERSION} of $IMAGE"
63
- ./gradlew -Pversion=${NEW_VERSION} publish closeAndReleaseRepository -Dorg.gradle.internal.publish.checksums.insecure=true --info
63
+ ./gradlew -Pversion=${NEW_VERSION} publish publishToSonatype closeAndReleaseStagingRepository -Dorg.gradle.internal.publish.checksums.insecure=true --info
64
64
./gradlew jibDockerBuild --image="${IMAGE}"
65
65
docker push "${IMAGE}"
66
66
Original file line number Diff line number Diff line change @@ -29,8 +29,7 @@ plugins {
29
29
id(" com.google.cloud.tools.jib" ) version " 3.2.1"
30
30
id(" com.github.johnrengelman.shadow" ) version " 7.1.2"
31
31
id(" net.researchgate.release" ) version " 2.8.1"
32
- id(" io.codearte.nexus-staging" ) version " 0.30.0"
33
- id(" de.marcphilipp.nexus-publish" ) version " 0.4.0"
32
+ id(" io.github.gradle-nexus.publish-plugin" ) version " 1.1.0"
34
33
`java- library`
35
34
`maven- publish`
36
35
signing
@@ -90,17 +89,19 @@ dependencies {
90
89
testImplementation(" io.ktor:ktor-server-test-host:$ktorVersion " )
91
90
}
92
91
93
- nexusStaging {
94
- username = System .getenv(" SONATYPE_USERNAME" )
95
- password = System .getenv(" SONATYPE_PASSWORD" )
96
- packageGroup = " no.nav"
97
- delayBetweenRetriesInMillis = 5000
98
- }
99
-
100
92
nexusPublishing {
93
+ packageGroup.set(" no.nav" )
101
94
clientTimeout.set(Duration .ofMinutes(2 ))
102
95
repositories {
103
- sonatype()
96
+ sonatype {
97
+ username.set(System .getenv(" SONATYPE_USERNAME" ))
98
+ password.set(System .getenv(" SONATYPE_PASSWORD" ))
99
+ }
100
+ }
101
+
102
+ transitionCheckOptions {
103
+ maxRetries.set(40 )
104
+ delayBetween.set(Duration .ofMillis(5000 ))
104
105
}
105
106
}
106
107
You can’t perform that action at this time.
0 commit comments