File tree Expand file tree Collapse file tree 4 files changed +28
-22
lines changed
Expand file tree Collapse file tree 4 files changed +28
-22
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -15,10 +15,14 @@ jobs:
1515 with :
1616 distribution : temurin
1717 java-version : 11
18- - uses : gradle/gradle-build-action@a4cf152f482c7ca97ef56ead29bf08bcd953284c
19- with :
20- arguments : assemble apiDiff check jacocoTestReport --continue --console=plain
21- - uses : codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d
18+
19+ - name : Set up Gradle
20+ uses : gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
21+
22+ - name : Test and Assemble and ApiDiff with Gradle
23+ run : ./gradlew assemble apiDiff check jacocoTestReport --continue --console=plain
24+
25+ - uses : codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7
2226 with :
2327 flags : unittests
2428 - uses : actions/upload-artifact@v6
Original file line number Diff line number Diff line change @@ -42,10 +42,11 @@ jobs:
4242 distribution : temurin
4343 java-version : ${{ inputs.java-version }}
4444
45- - name : Build with Gradle
46- uses : gradle/gradle-build-action@a4cf152f482c7ca97ef56ead29bf08bcd953284c
47- with :
48- arguments : assemble apiDiff check jacocoTestReport --continue --console=plain
45+ - name : Set up Gradle
46+ uses : gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
47+
48+ - name : Test and Assemble and ApiDiff with Gradle
49+ run : ./gradlew assemble apiDiff check jacocoTestReport --continue --console=plain
4950
5051 - name : Get Artifact Version
5152 id : get_version
Original file line number Diff line number Diff line change 1- plugins {
2- id ' io.github.gradle-nexus.publish-plugin' version ' 2.0.0'
3- }
1+
2+ // plugins {
3+ // id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
4+ // }
45
56allprojects {
67 group = ' com.auth0'
@@ -9,14 +10,14 @@ allprojects {
910 mavenCentral()
1011 }
1112}
12-
13- nexusPublishing {
14- repositories {
15- sonatype {
16- nexusUrl. set(uri(' https://ossrh-staging-api.central.sonatype.com/service/local/' ))
17- snapshotRepositoryUrl. set(uri(' https://central.sonatype.com/repository/maven-snapshots/' ))
18- username. set(System . getenv(" MAVEN_USERNAME" ))
19- password. set(System . getenv(" MAVEN_PASSWORD" ))
20- }
21- }
22- }
13+ //
14+ // nexusPublishing {
15+ // repositories {
16+ // sonatype {
17+ // nexusUrl.set(uri('https://ossrh-staging-api.central.sonatype.com/service/local/'))
18+ // snapshotRepositoryUrl.set(uri('https://central.sonatype.com/repository/maven-snapshots/'))
19+ // username.set(System.getenv("MAVEN_USERNAME"))
20+ // password.set(System.getenv("MAVEN_PASSWORD"))
21+ // }
22+ // }
23+ // }
You can’t perform that action at this time.
0 commit comments