Skip to content

Commit

Permalink
wip: try disabling signing for allshared
Browse files Browse the repository at this point in the history
  • Loading branch information
Manrich121 committed Feb 19, 2024
1 parent 39c8de7 commit 3f6ee71
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/KMMBridge-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ on:
# push:
# branches:
# - "main"

env:
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyId : ${{ secrets.SIGNING_KEY_ID }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }}

jobs:
call-kmmbridge-publish:
permissions:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

env:
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyId : ${{ secrets.SIGNING_KEY_ID }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }}

jobs:
Expand Down
9 changes: 0 additions & 9 deletions allshared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,3 @@ kmmbridge {
mavenPublishArtifacts()
spm()
}

signing {
val inMemoryKey = project.findProperty("signingInMemoryKey")?.toString()
if (inMemoryKey != null) {
val inMemoryKeyId = project.findProperty("signingInMemoryKeyId")?.toString()
val inMemoryKeyPassword = project.findProperty("signingInMemoryKeyPassword")?.toString().orEmpty()
useInMemoryPgpKeys(inMemoryKeyId, inMemoryKey, inMemoryKeyPassword)
}
}
1 change: 1 addition & 0 deletions allshared/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
POM_ARTIFACT_ID = allshared
POM_NAME = PowerSync iOS Framework
RELEASE_SIGNING_ENABLED = false

0 comments on commit 3f6ee71

Please sign in to comment.