Skip to content

Commit

Permalink
Merge pull request #190 from xuwei-k/prepare-sbt-2
Browse files Browse the repository at this point in the history
prepare sbt 2.x cross build
  • Loading branch information
eed3si9n authored Oct 18, 2024
2 parents 0a56157 + 42a27ae commit cfc2472
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/scala/sbtghactions/GitHubActionsPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -115,5 +115,5 @@ object GitHubActionsPlugin extends AutoPlugin {
override def buildSettings = workflowParseSettings

override def globalSettings = Seq(
githubIsWorkflowBuild := sys.env.get("GITHUB_ACTIONS").map("true" ==).getOrElse(false))
githubIsWorkflowBuild := sys.env.get("GITHUB_ACTIONS").map("true" == _).getOrElse(false))
}
2 changes: 1 addition & 1 deletion src/main/scala/sbtghactions/Paths.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ object Paths {

final case class Ignore(path: List[String]) extends Paths

final case object None extends Paths
case object None extends Paths
}

0 comments on commit cfc2472

Please sign in to comment.