Skip to content

Commit

Permalink
keep on hacking
Browse files Browse the repository at this point in the history
  • Loading branch information
johnynek committed Mar 6, 2022
1 parent 272493e commit 28a15c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ jobs:
run: sbt '++${{ matrix.scala }}' docs/tlSite

- name: Publish site
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master'
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
3 changes: 1 addition & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ ThisBuild / githubWorkflowAddedJobs +=
)

ThisBuild / tlCiReleaseBranches := Seq("master")
ThisBuild / tlSitePublishBranch := Some("master")

lazy val root = tlCrossRootProject.aggregate(core, cats)

Expand Down Expand Up @@ -101,7 +102,6 @@ lazy val benchmark = project
.dependsOn(coreJVM, catsJVM)
.enablePlugins(NoPublishPlugin)
.settings(
crossScalaVersions := List(Scala212),
name := "paiges-benchmark"
)
.enablePlugins(JmhPlugin)
Expand All @@ -111,7 +111,6 @@ lazy val docs = project
.dependsOn(coreJVM, catsJVM)
.enablePlugins(TypelevelSitePlugin)
.settings(
crossScalaVersions := List(Scala212),
name := "paiges-docs",
mdocIn := (LocalRootProject / baseDirectory).value / "docs" / "src" / "main" / "mdoc"
)
Expand Down

0 comments on commit 28a15c7

Please sign in to comment.