Skip to content

Commit

Permalink
attempt to fix publishing :(
Browse files Browse the repository at this point in the history
  • Loading branch information
kitlangton committed Mar 15, 2024
1 parent 67ca04c commit d8ea589
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
run: sbt '++ ${{ matrix.scala }}' test

- name: Compress target directories
run: tar cf targets.tar target modules/core/.js/target modules/core/.jvm/target examples/.jvm/target project/target
run: tar cf targets.tar js/target modules/core/.js/target modules/core/.jvm/target jvm/target examples/.jvm/target target project/target

- name: Upload target directories
uses: actions/upload-artifact@v4
Expand Down
8 changes: 3 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,14 @@ ThisBuild / githubWorkflowPublish := Seq(
// Project Definitions //
/////////////////////////

lazy val root = project
lazy val root = crossProject(JSPlatform, JVMPlatform)
.in(file("."))
.settings(
name := "root",
publish / skip := true
)
.aggregate(
core.js,
core.jvm,
examples.jvm
core,
examples
)

lazy val core = (crossProject(JSPlatform, JVMPlatform).crossType(CrossType.Pure) in file("modules/core"))
Expand Down

0 comments on commit d8ea589

Please sign in to comment.