Skip to content

Commit

Permalink
Merge pull request #476 from MAIF/ga-assets
Browse files Browse the repository at this point in the history
🐛 fix replace TRAVIS_TAG by TAG_NAME
  • Loading branch information
pierrebruninmaif authored Dec 10, 2020
2 parents f3e6f3a + b660864 commit 6d4a4ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion izanami-clients/izanami-spring/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ scalaVersion := "2.13.3"
val springbootVersion = "2.2.2.RELEASE"
val akkaVersion = "2.6.3"

val disabledPlugins = if (sys.env.get("TRAVIS_TAG").filterNot(_.isEmpty).isDefined) {
val disabledPlugins = if (sys.env.get("TAG_NAME").filterNot(_.isEmpty).isDefined) {
Seq()
} else {
Seq(BintrayPlugin)
Expand Down
2 changes: 1 addition & 1 deletion izanami-clients/jvm/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbt.Keys.{organization, scalacOptions}
import sbtrelease.ReleaseStateTransformations._
import BintrayConfig._

val disabledPlugins = if (sys.env.get("TRAVIS_TAG").filterNot(_.isEmpty).isDefined) {
val disabledPlugins = if (sys.env.get("TAG_NAME").filterNot(_.isEmpty).isDefined) {
Seq(RevolverPlugin)
} else {
Seq(RevolverPlugin, BintrayPlugin)
Expand Down

0 comments on commit 6d4a4ed

Please sign in to comment.