Skip to content

Commit 9964e80

Browse files
committed
fix cd
1 parent f1f2942 commit 9964e80

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

.github/workflows/check.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v1
11-
- name: set up JDK 1.8
12-
uses: actions/setup-java@v1
10+
- name: Checkout code
11+
uses: actions/checkout@v2
12+
13+
- name: Use Java11
14+
uses: actions/setup-java@v2
1315
with:
14-
java-version: 1.8
16+
distribution: adopt
17+
java-version: 11
18+
1519
- name: Build with Gradle
1620
run: ./gradlew build check

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ subprojects {
4646
}
4747
}
4848

49-
apply from: "publish-root.gradle"
49+
apply from: "publish-root.gradle"

powerpermission-coroutines/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,3 @@ ext {
4545
}
4646

4747
apply from: "../publish-module.gradle"
48-

powerpermission-livedata/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,3 @@ ext {
4040
}
4141

4242
apply from: "../publish-module.gradle"
43-

powerpermission/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ ext {
6464
}
6565

6666
apply from: "../publish-module.gradle"
67-

publish-module.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ signing {
9999
rootProject.ext["signing.password"],
100100
)
101101
sign publishing.publications
102-
}
102+
}

publish-root.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ nexusPublishing {
3333
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
3434
}
3535
}
36-
}
36+
}

0 commit comments

Comments
 (0)