mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-06-19 17:48:15 +08:00
merged publish fix
This commit is contained in:
@ -310,9 +310,10 @@ Task("DownloadGitHubReleaseArtifacts")
|
||||
|
||||
Information("Release url " + releaseUrl);
|
||||
|
||||
var assets_url = ParseJson(GetResource(releaseUrl))
|
||||
.GetValue("assets_url")
|
||||
.Value<string>();
|
||||
var assets_url = Newtonsoft.Json.Linq.JObject.Parse(GetResource(releaseUrl));
|
||||
|
||||
//todo - remove when publish working..var assets_url = ParseJson(GetResource(releaseUrl))
|
||||
assets_url.GetValue("assets_url").Value<string>();
|
||||
|
||||
Information("Assets url " + assets_url);
|
||||
|
||||
|
Reference in New Issue
Block a user