Skip to content

Commit f774e87

Browse files
committed
howa-
1 parent b51710f commit f774e87

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/builder.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
signingkey: ${{secrets.SIGNING_KEY}}
2525
signingkeyid: ${{secrets.SIGNING_KEYID}}
2626
signingpassword: ${{secrets.SIGNING_PASSWORD}}
27-
sonatypePassword: ${{secrets.SONATYPE_PASSWORD}}
28-
sonatypeUsername: ${{secrets.SONATYPE_USERNAME}}
27+
sonatypepassword: ${{secrets.SONATYPE_PASSWORD}}
28+
sonatypeusername: ${{secrets.SONATYPE_USERNAME}}
2929
- name: Zip create
3030
run: |
3131
cd build/libs

common/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ publishing {
6464
def snapshotsRepoUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots"
6565
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
6666
credentials {
67-
username = System.getenv('sonatypeUsername')
68-
password = System.getenv('sonatypePassword')
67+
username = System.getenv('sonatypeusername')
68+
password = System.getenv('sonatypepassword')
6969
}
7070
}
7171
}

native/build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'java'
3-
id 'maven-publish'
4-
id 'signing'
3+
//id 'maven-publish'
4+
// id 'signing'
55
}
66
group rootProject.group
77
archivesBaseName = rootProject.archivesBaseName + "-native"
@@ -25,7 +25,7 @@ java {
2525
withJavadocJar()
2626
withSourcesJar()
2727
}
28-
28+
/*
2929
publishing {
3030
publications {
3131
mavenJava(MavenPublication) {
@@ -86,3 +86,4 @@ javadoc {
8686
}
8787
8888
89+
*/

0 commit comments

Comments
 (0)