PR feedback
This commit is contained in:
parent
ace6e859e7
commit
eeef3c72e8
2 changed files with 6 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
<TargetFramework>$(CoreSdkTargetFramework)</TargetFramework>
|
||||
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
||||
<CopyBuildOutputToPublishDirectory>false</CopyBuildOutputToPublishDirectory>
|
||||
<Channel>$(SourceBranch.Replace('refs/heads/', '').Replace('internal/', ''))</Channel>
|
||||
<Channel>$(SourceBranch.Replace('refs/heads/', ''))</Channel>
|
||||
</PropertyGroup>
|
||||
|
||||
<Import Project="..\redist\targets\BuildCoreSdkTasks.targets" />
|
||||
|
|
|
@ -64,6 +64,11 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
|
||||
public override bool Execute()
|
||||
{
|
||||
if (!(Channel.Equals("master") || Channel.Equals("main") || Channel.StartsWith("release")))
|
||||
{
|
||||
return true; // Skip copy to latest, we don't want to publish to arbitrary places
|
||||
}
|
||||
|
||||
string targetFolder = $"{AzurePublisher.Product.Sdk}/{Channel}";
|
||||
|
||||
string targetVersionFile = $"{targetFolder}/{CommitHash}";
|
||||
|
|
Loading…
Reference in a new issue