Skip to content

Commit

Permalink
chore: do not fail, just send to eap
Browse files Browse the repository at this point in the history
  • Loading branch information
kmruiz committed May 9, 2024
1 parent 74687f0 commit 466b1d7
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/jetbrains-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,7 @@ tasks {
channels = when (System.getenv("JB_PUBLISH_CHANNEL")) {
"ga" -> listOf()
"beta" -> listOf("beta")
else -> if (gradle.startParameter.taskNames.contains("publishPlugin")) {
throw RuntimeException("Invalid channel. Only `ga` and `beta` accepted.")
} else {
listOf("<unused>")
}
else -> listOf("eap")
}
token.set(System.getenv("PUBLISH_TOKEN"))
}
Expand Down

0 comments on commit 466b1d7

Please sign in to comment.