Publish the correct .version file to azure.
This commit is contained in:
parent
4c06e3323f
commit
14cc5bc5c4
1 changed files with 4 additions and 1 deletions
|
@ -18,6 +18,8 @@ namespace Microsoft.DotNet.Cli.Build
|
||||||
|
|
||||||
private static string Version { get; set; }
|
private static string Version { get; set; }
|
||||||
|
|
||||||
|
private static string NuGetVersion { get; set; }
|
||||||
|
|
||||||
|
|
||||||
[Target]
|
[Target]
|
||||||
public static BuildTargetResult InitPublish(BuildTargetContext c)
|
public static BuildTargetResult InitPublish(BuildTargetContext c)
|
||||||
|
@ -27,6 +29,7 @@ namespace Microsoft.DotNet.Cli.Build
|
||||||
BlobContainer = blobClient.GetContainerReference("dotnet");
|
BlobContainer = blobClient.GetContainerReference("dotnet");
|
||||||
|
|
||||||
Version = c.BuildContext.Get<BuildVersion>("BuildVersion").SimpleVersion;
|
Version = c.BuildContext.Get<BuildVersion>("BuildVersion").SimpleVersion;
|
||||||
|
NuGetVersion = c.BuildContext.Get<BuildVersion>("BuildVersion").NuGetVersion;
|
||||||
Channel = c.BuildContext.Get<string>("Channel");
|
Channel = c.BuildContext.Get<string>("Channel");
|
||||||
return c.Success();
|
return c.Success();
|
||||||
}
|
}
|
||||||
|
@ -83,7 +86,7 @@ namespace Microsoft.DotNet.Cli.Build
|
||||||
{
|
{
|
||||||
var osname = Monikers.GetOSShortName();
|
var osname = Monikers.GetOSShortName();
|
||||||
var latestVersionBlob = $"{Channel}/dnvm/latest.{osname}.{CurrentArchitecture.Current}.version";
|
var latestVersionBlob = $"{Channel}/dnvm/latest.{osname}.{CurrentArchitecture.Current}.version";
|
||||||
var latestVersionFile = Path.Combine(Dirs.Stage2, ".version");
|
var latestVersionFile = Path.Combine(Dirs.Stage2, "sdk", NuGetVersion, ".version");
|
||||||
|
|
||||||
PublishFileAzure(latestVersionBlob, latestVersionFile);
|
PublishFileAzure(latestVersionBlob, latestVersionFile);
|
||||||
return c.Success();
|
return c.Success();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue