Skip to content

Commit c238dd3

Browse files
committed
Skip uploading native launchers to stable Scala.js tag when publishing SNAPSHOT
1 parent 7ac418e commit c238dd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ object ci extends Module {
363363
else ("v" + version, false)
364364

365365
Upload.upload(ghOrg, ghName, ghToken, tag, dryRun = false, overwrite = overwriteAssets)(launchers: _*)
366-
if(version != scalaJsVersion) // when we release `0.13.0.1` we should also update native launchers in tag `0.13.0`
366+
if(version != scalaJsVersion && !version.endsWith("-SNAPSHOT")) // when we release `0.13.0.1` we should also update native launchers in tag `0.13.0`
367367
Upload.upload(ghOrg, ghName, ghToken, s"v$scalaJsVersion", dryRun = false, overwrite = true)(launchers: _*)
368368
}
369369
}

0 commit comments

Comments
 (0)