summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
Diffstat (limited to 'build.sc')
-rwxr-xr-xbuild.sc6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.sc b/build.sc
index e2f9c027..432ba898 100755
--- a/build.sc
+++ b/build.sc
@@ -364,10 +364,10 @@ def uploadToGithub(authKey: String) = T.command{
if (releaseTag == label){
scalaj.http.Http("https://api.github.com/repos/lihaoyi/mill/releases")
.postData(
- upickle.json.write(
+ ujson.write(
Js.Obj(
- "tag_name" -> Js.Str(releaseTag),
- "name" -> Js.Str(releaseTag)
+ "tag_name" -> releaseTag,
+ "name" -> releaseTag
)
)
)