Skip to content

Commit

Permalink
[INJIMOB-890]: removed extra variables
Browse files Browse the repository at this point in the history
Signed-off-by: Ayushi Dey <[email protected]>
  • Loading branch information
AyushiDey committed Apr 24, 2024
1 parent 3c38f9c commit fae3706
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions android/publish-artifact.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
def usernameValue = System.getenv("OSSRH_USER")
def passwordValue = System.getenv("OSSRH_SECRET")
def urlValue = System.getenv("OSSRH_URL")
println("URL Value: $urlValue")
publishing {
repositories {
maven {
url = urlValue
url = System.getenv("OSSRH_URL")
println("URL Value: $url")
name = "tuvali"
credentials {
username = usernameValue
password = passwordValue
username = System.getenv("OSSRH_USER")
password = System.getenv("OSSRH_SECRET")
}
}
}
Expand Down

0 comments on commit fae3706

Please sign in to comment.