Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Mitchell <mmitche@microsoft.com>2022-09-13 22:41:02 +0300
committerGitHub <noreply@github.com>2022-09-13 22:41:02 +0300
commit2676b598963fddcca4f8b2edb0ba33b9b23f940c (patch)
tree5678151f31eb0f726da31baabac7c24df1a3f339
parent6bd26fad6b3f5bb6d330e8f580850c4596cba417 (diff)
[release/7.0] Tweak publishing to avoid clearing ItemsToPush during SB (#43946)
* Tweak publishing to avoid clearing ItemsToPush during SB * Missing quote * Use different property * Update Publishing.props
-rw-r--r--eng/Publishing.props6
1 files changed, 4 insertions, 2 deletions
diff --git a/eng/Publishing.props b/eng/Publishing.props
index ef4fe67705..5a3ed5d3d3 100644
--- a/eng/Publishing.props
+++ b/eng/Publishing.props
@@ -57,8 +57,10 @@
<ItemGroup>
<!-- Do not push .nupkg files from Linux and macOS builds. They'll be packed up separately and signed on Windows.
Do not remove if post build sign is true, as we avoid the xplat codesign jobs, and need to have
- the nupkgs pushed. -->
- <ItemsToPushToBlobFeed Remove="@(ItemsToPushToBlobFeed)" Condition="'$(OS)' != 'Windows_NT' and '$(PostBuildSign)' != 'true'" />
+ the nupkgs pushed. Do not do this if building from source, since we want the source build intermediate package
+ to be published. Use ArcadeBuildFromSource as DotNetBuildFromSource is only set in the internal source build,
+ and Build.proj is invoked from the wrapper build. -->
+ <ItemsToPushToBlobFeed Remove="@(ItemsToPushToBlobFeed)" Condition="'$(OS)' != 'Windows_NT' and '$(PostBuildSign)' != 'true' and '$(ArcadeBuildFromSource)' != 'true'" />
<ItemsToPushToBlobFeed Include="@(_ChecksumsToPublish)">
<ManifestArtifactData>NonShipping=true</ManifestArtifactData>