File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,12 +13,11 @@ jobs:
1313
1414 - name : Publish Artifacts
1515 env :
16- ORG_GRADLE_PROJECT_mavenCentralUsername : $
17- ORG_GRADLE_PROJECT_mavenCentralPassword : $
18- ORG_GRADLE_PROJECT_signingInMemoryKey : $
19- ORG_GRADLE_PROJECT_signingInMemoryKeyPassword : $
16+ ORG_GRADLE_PROJECT_mavenCentralUsername : ${{ secrets.SONATYPE_USERNAME }}
17+ ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.SONATYPE_PASSWORD }}
18+ ORG_GRADLE_PROJECT_signingInMemoryKey : ${{ secrets.PGP_SECRET }}
19+ ORG_GRADLE_PROJECT_signingInMemoryKeyPassword : ${{ secrets.PGP_PASSPHRASE }}
2020 run : chmod +x ./gradlew && ./gradlew publishAndReleaseToMavenCentral
21-
2221on :
2322 push :
2423 tags :
Original file line number Diff line number Diff line change 33#
44# Ref: https://docs.travis-ci.com/user/languages/java/
55#
6- language : java
7- jdk :
8- - openjdk12
9- - openjdk11
10- - openjdk10
11- - openjdk9
12- - openjdk8
13- before_install :
14- # ensure gradlew has proper permission
15- - chmod a+x ./gradlew
16- script :
17- # test using maven
18- # - mvn test
19- # test using gradle
20- - gradle test
21- # test using sbt
22- # - sbt test
You can’t perform that action at this time.
0 commit comments