Skip to content

Commit

Permalink
Fix swing module name
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge committed Dec 8, 2023
1 parent c7e4985 commit 03849df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ jobs:

- name: Make target directories
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
run: mkdir -p target unidocs/target docs/target swing/target core/js/target examples/js/target core/jvm/target examples/jvm/target calico/target project/target
run: mkdir -p generic/jvm/target target unidocs/target docs/target swing/target core/js/target examples/js/target generic/js/target core/jvm/target examples/jvm/target calico/target project/target

- name: Compress target directories
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
run: tar cf targets.tar target unidocs/target docs/target swing/target core/js/target examples/js/target core/jvm/target examples/jvm/target calico/target project/target
run: tar cf targets.tar generic/jvm/target target unidocs/target docs/target swing/target core/js/target examples/js/target generic/js/target core/jvm/target examples/jvm/target calico/target project/target

- name: Upload target directories
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
Expand Down
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ lazy val swing = project
.in(file("swing"))
.settings(
commonSettings,
libraryDependencies ++= Seq(Dependencies.swingIo.value)
libraryDependencies ++= Seq(Dependencies.swingIo.value),
moduleName := "gooey-swing"
)
.dependsOn(core.jvm)

Expand Down

0 comments on commit 03849df

Please sign in to comment.