Skip to content

Commit

Permalink
Set up GitHub Packages publishing.
Browse files Browse the repository at this point in the history
  • Loading branch information
ccromjongh committed May 16, 2024
1 parent eb89c28 commit b3dfece
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
10 changes: 6 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ ThisBuild / developers := List(
)
)

ThisBuild / publishMavenStyle := true
//ThisBuild / pomIncludeRepository := { _ => false }
ThisBuild / versionScheme := Some("early-semver")
ThisBuild / publishMavenStyle := true
ThisBuild / pomIncludeRepository := { _ => false }
ThisBuild / versionScheme := Some("early-semver")
ThisBuild / resolvers += Resolver.mavenLocal
ThisBuild / publishTo := Some(Resolver.mavenLocal)
ThisBuild / githubOwner := "abs-tudelft"
ThisBuild / githubRepository := "Tydi-Chisel"
ThisBuild / publishTo := githubPublishTo.value

lazy val commonSettings = Seq(
homepage := Some(url("https://github.com/abs-tudelft/tydi-chisel")),
Expand Down
7 changes: 4 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
logLevel := Level.Warn

// Code quality
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.1")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.1")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("com.codecommit" % "sbt-github-packages" % "0.5.3")

0 comments on commit b3dfece

Please sign in to comment.