Skip to content

Commit

Permalink
fix(ci): version override from GIT_TAG_NAME
Browse files Browse the repository at this point in the history
missed this when migrating from Travis to GH Actions
  • Loading branch information
Malinskiy committed Jun 6, 2021
1 parent 4e35082 commit 2bbd6e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object Versions {
val marathon = System.getenv("DEPLOY_VERSION_OVERRIDE") ?: "0.7.0"
val marathon = System.getenv("GIT_TAG_NAME") ?: "0.7.0"

val kotlin = "1.4.31"
val coroutines = "1.3.9"
Expand Down

0 comments on commit 2bbd6e0

Please sign in to comment.