@@ -220,7 +220,7 @@ trait ScalaJsCliPublishModule extends PublishModule {
220
220
import mill .scalalib .publish ._
221
221
def pomSettings = PomSettings (
222
222
description = artifactName(),
223
- organization = " io.github.alexarchambault.tmp " ,
223
+ organization = " org.virtuslab.scala-cli " ,
224
224
url = s " https://github.com/ $ghOrg/ $ghName" ,
225
225
licenses = Seq (License .`BSD-3-Clause`),
226
226
versionControl = VersionControl .github(ghOrg, ghName),
@@ -324,8 +324,8 @@ object ci extends Module {
324
324
set.head
325
325
}
326
326
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" ,
329
329
credentials = credentials,
330
330
signed = true ,
331
331
// format: off
@@ -363,6 +363,8 @@ object ci extends Module {
363
363
else (" v" + version, false )
364
364
365
365
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 : _* )
366
368
}
367
369
}
368
370
0 commit comments