Skip to content

Commit

Permalink
fix(proxy): missed enable parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Vacxe committed May 1, 2024
1 parent 3f544f2 commit 01dd5a8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object Versions {
const val clikt = "2.6.0"
const val googleOAuth = "1.13.0"
const val googleAppPublisher = "v3-rev20240328-2.0.0"
const val googleAppPublisher = "v3-rev20240418-2.0.0"
const val junit = "4.13"
}

Expand Down
2 changes: 1 addition & 1 deletion github-action/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/vacxe/google-play-cli:0.4.3
FROM ghcr.io/vacxe/google-play-cli:0.4.4

COPY entrypoint.sh /entrypoint.sh
COPY templates /templates
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,12 @@ class PlayStoreApi(serviceAccountInputStream: InputStream, appName: String) :

System.getenv("PLAYSTORE_PROXY")?.run {
val proxyParameters = split(":")
System.setProperty("proxyHost", proxyParameters[0])
System.setProperty("proxyPort", proxyParameters[1])
val host = proxyParameters[0]
val port = proxyParameters[1]

System.setProperty("proxySet", "true");
System.setProperty("proxyHost", host)
System.setProperty("proxyPort", port)
}

val connectionTimeout = (System.getenv("PLAYSTORE_CONNECTION_TIMEOUT") ?: "PT2M")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ fun main(args: Array<String>) {
addCmd {
object : CliktCommand(name = "version", help = "Library version code") {
override fun run() {
println("0.4.3")
println("0.4.4")
}
}
}
Expand Down

0 comments on commit 01dd5a8

Please sign in to comment.