@@ -220,7 +220,7 @@ trait ScalaJsCliPublishModule extends PublishModule {
220220 import mill .scalalib .publish ._
221221 def pomSettings = PomSettings (
222222 description = artifactName(),
223- organization = " io.github.alexarchambault.tmp " ,
223+ organization = " org.virtuslab.scala-cli " ,
224224 url = s " https://github.com/ $ghOrg/ $ghName" ,
225225 licenses = Seq (License .`BSD-3-Clause`),
226226 versionControl = VersionControl .github(ghOrg, ghName),
@@ -324,8 +324,8 @@ object ci extends Module {
324324 set.head
325325 }
326326 val publisher = new scalalib.publish.SonatypePublisher (
327- uri = " https://s01. oss.sonatype.org/service/local" ,
328- snapshotUri = " https://s01. oss.sonatype.org/content/repositories/snapshots" ,
327+ uri = " https://oss.sonatype.org/service/local" ,
328+ snapshotUri = " https://oss.sonatype.org/content/repositories/snapshots" ,
329329 credentials = credentials,
330330 signed = true ,
331331 // format: off
@@ -363,6 +363,8 @@ object ci extends Module {
363363 else (" v" + version, false )
364364
365365 Upload .upload(" scala-cli" , " scala-js-cli" , 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`
367+ Upload .upload(" scala-cli" , " scala-js-cli" , ghToken, s " v $scalaJsVersion" , dryRun = false , overwrite = true )(launchers : _* )
366368 }
367369}
368370
0 commit comments