Publish and Pkg, Deb fixes
- Publish only combined SharedFx,SharedHost and combined SharedFx,SharedHost,CLISDK tarballs and zips.
This commit is contained in:
parent
5150bae60c
commit
9602d92634
3 changed files with 14 additions and 54 deletions
|
@ -24,10 +24,11 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
public static BuildTargetResult GenerateSdkProductArchive(BuildTargetContext c)
|
||||
{
|
||||
var version = c.BuildContext.Get<BuildVersion>("BuildVersion").SimpleVersion;
|
||||
var pkg = c.BuildContext.Get<string>("SdkInstallerFile");
|
||||
var pkg = c.BuildContext.Get<string>("CombinedFrameworkSDKHostInstallerFile");
|
||||
var input = c.BuildContext.Get<string>("CLISDKRoot");
|
||||
|
||||
Cmd(Path.Combine(Dirs.RepoRoot, "packaging", "osx", "package-osx.sh"),
|
||||
"-v", version, "-i", Dirs.Stage2, "-o", pkg)
|
||||
"-v", version, "-i", input, "-o", pkg)
|
||||
.Execute()
|
||||
.EnsureSuccessful();
|
||||
return c.Success();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue