diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a15bce7..9143f6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: distribution: "zulu" # - name: Tests # run: sbt +test - - name: DEV=prod server/dist - run: sbt server/dist + - name: server/dist + run: DEV=prod sbt server/dist env: NODE_OPTIONS: "--openssl-legacy-provider" diff --git a/build.sbt b/build.sbt index 5391807..5ba205e 100644 --- a/build.sbt +++ b/build.sbt @@ -48,7 +48,7 @@ lazy val generator = project .enablePlugins(SbtTwirl) .settings( libraryDependencies += "com.github.scopt" %% "scopt" % "4.1.0", - libraryDependencies += "com.lihaoyi" %% "os-lib" % "0.10.0", + libraryDependencies += "com.lihaoyi" %% "os-lib" % "0.10.1", libraryDependencies += "org.slf4j" % "slf4j-simple" % "2.0.13" )