Skip to content

Commit

Permalink
Add default key sign for project, so maven local works (#442)
Browse files Browse the repository at this point in the history
* Add default key sign for project, so maven local works

* Remove build
  • Loading branch information
alorma authored Sep 23, 2021
1 parent 78c36fc commit 403c97f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
/.idea/*
.DS_Store
/build
build/
/captures
.externalNativeBuild
.idea/
2 changes: 1 addition & 1 deletion scripts/publish-module.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ ext["signing.secretKeyRingFile"] = rootProject.ext["signing.secretKeyRingFile"]

signing {
sign publishing.publications
}
}
6 changes: 3 additions & 3 deletions scripts/publish-root.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
ext["ossrhUsername"] = ''
ext["ossrhPassword"] = ''
ext["sonatypeStagingProfileId"] = ''
ext["signing.keyId"] = ''
ext["signing.password"] = ''
ext["signing.secretKeyRingFile"] = ''
ext["signing.keyId"] = '0C762F0D'
ext["signing.password"] = 'dsLCfZhaoHbgqgNeRHuAY'
ext["signing.secretKeyRingFile"] = '../secret.gpg'

File secretPropsFile = project.rootProject.file('local.properties')
if (secretPropsFile.exists()) {
Expand Down
Binary file added secret.gpg
Binary file not shown.

0 comments on commit 403c97f

Please sign in to comment.