File tree Expand file tree Collapse file tree 3 files changed +8
-12
lines changed Expand file tree Collapse file tree 3 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -142,10 +142,14 @@ jobs:
142
142
run : chmod +x gradlew
143
143
- name : Publish Packages to Artifactory
144
144
if : ${{ matrix.jdk == '1.8' }}
145
- run : ./gradlew -PversionSuffix="-SNAPSHOT" -PbuildNumber="${buildNumber}" publishMavenPublicationToGitHubPackagesRepository --no-daemon --stacktrace
145
+ run : ./gradlew -PversionSuffix="-SNAPSHOT" -PbuildNumber="${buildNumber}" publishMavenPublicationToSonatypeRepository --no-daemon --stacktrace
146
146
env :
147
147
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
148
148
buildNumber : ${{ github.run_number }}
149
+ ORG_GRADLE_PROJECT_signingKey : ${{secrets.signingKey}}
150
+ ORG_GRADLE_PROJECT_signingPassword : ${{secrets.signingPassword}}
151
+ ORG_GRADLE_PROJECT_sonatypeUsername : ${{secrets.sonatypeUsername}}
152
+ ORG_GRADLE_PROJECT_sonatypePassword : ${{secrets.sonatypePassword}}
149
153
- name : Aggregate test reports with ciMate
150
154
if : always()
151
155
continue-on-error : true
Original file line number Diff line number Diff line change @@ -21,16 +21,6 @@ subprojects {
21
21
}
22
22
}
23
23
developers {
24
- developer {
25
- id = ' rdegnan'
26
- name = ' Ryland Degnan'
27
- email = ' ryland@netifi.com'
28
- }
29
- developer {
30
- id = ' yschimke'
31
- name = ' Yuri Schimke'
32
- email = ' yuri@schimke.ee'
33
- }
34
24
developer {
35
25
id = ' OlegDokuka'
36
26
name = ' Oleh Dokuka'
Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ subprojects {
20
20
repositories {
21
21
maven {
22
22
name = " sonatype"
23
- url = " https://oss.sonatype.org/service/local/staging/deploy/maven2"
23
+ url = project. version. contains(" -SNAPSHOT" )
24
+ ? " https://oss.sonatype.org/content/repositories/snapshots/"
25
+ : " https://oss.sonatype.org/service/local/staging/deploy/maven2"
24
26
credentials {
25
27
username project. findProperty(" sonatypeUsername" )
26
28
password project. findProperty(" sonatypePassword" )
You can’t perform that action at this time.
0 commit comments