-
Notifications
You must be signed in to change notification settings - Fork 357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sbt-typelevel-ci-release #1631
sbt-typelevel-ci-release #1631
Conversation
You should remove the
|
build.sbt
Outdated
WorkflowStep.Run( | ||
commands = List("sbt docs/makeSite"), // don't run the matrix build, it only works for `scalaVersion` | ||
name = Some("Check Headers"), | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
another trick you can do is
WorkflowStep.Run( | |
commands = List("sbt docs/makeSite"), // don't run the matrix build, it only works for `scalaVersion` | |
name = Some("Check Headers"), | |
) | |
WorkflowStep.Sbt( | |
commands = List("docs/makeSite") | |
name = Some("Check Headers"), | |
cond = Some(s"matrix.scala == '$scala213Version'"), | |
) |
ThisBuild / developers += tlGitHubDev("tpolecat", "Rob Norris") | ||
ThisBuild / tlSonatypeUseLegacyHost := false | ||
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11")) | ||
ThisBuild / githubWorkflowBuildPreamble ++= Seq( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI there's also githubWorkflowBuild
(the default ci
step resides in here) and githubWorkflowBuildPostamble
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm yeah maybe I should do docs last.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Btw we're going to bake in the docs step, I forgot its essential to publishing.
Alright let's see how it does. |
No description provided.