Skip to content

Commit d022be5

Browse files
authored
fix the release build (#281)
1 parent 0055ba3 commit d022be5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
with:
1414
distribution: adopt
1515
java-version: 8
16-
- run: sbt versionCheck ci-release
16+
- run: sbt proj/versionCheck ci-release
1717
env:
1818
PGP_PASSPHRASE: ${{secrets.PGP_PASSPHRASE}}
1919
PGP_SECRET: ${{secrets.PGP_SECRET}}

build.sbt

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ lazy val proj = crossProject(JSPlatform, JVMPlatform)
2222
.crossType(CrossType.Pure)
2323
.in(file("."))
2424
.settings(sharedSettings)
25-
// until we have actually published for Scala.js
25+
// until we have actually published for Scala.js. this is also why,
26+
// for now, release.yml does just `proj/versionCheck` instead of `versionCheck`
2627
.jvmSettings(versionPolicyIntention := Compatibility.BinaryAndSourceCompatible)
2728
.jsSettings(versionPolicyIntention := Compatibility.None)
2829
// override sbt-scala-module default (which is unsuitable for Scala.js)

0 commit comments

Comments
 (0)