Skip to content

Commit

Permalink
Merge pull request #1240 from joreilly/kmmbridge
Browse files Browse the repository at this point in the history
kmmbridge changes
  • Loading branch information
joreilly authored Apr 5, 2024
2 parents c66e4dd + 8e946a1 commit 0595341
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/publish-kmmbridge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ jobs:
uses: touchlab/KMMBridgeGithubWorkflow/.github/workflows/[email protected]
with:
jvmVersion: 17
versionBaseProperty: LIBRARY_VERSION
versionBaseProperty: LIBRARY_VERSION
secrets:
gradle_params: -DMAVEN_USERNAME=${{env.MAVEN_USERNAME}} -DMAVEN_PASSWORD=${{env.MAVEN_PASSWORD}}
5 changes: 2 additions & 3 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,8 @@ publishing {
maven {
url = uri("https://repo.repsy.io/mvn/joreilly/confetti")
credentials {
username = System.getenv("MAVEN_USERNAME")
password = System.getenv("MAVEN_PASSWORD")
}
username = System.getenv("MAVEN_USERNAME") ?: System.getProperty("MAVEN_USERNAME")
password = System.getenv("MAVEN_PASSWORD") ?: System.getProperty("MAVEN_PASSWORD") }
}
}
}
Expand Down

0 comments on commit 0595341

Please sign in to comment.