We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b062048 commit ef42069Copy full SHA for ef42069
build/azure-pipelines/product-publish.ps1
@@ -60,6 +60,7 @@ do {
60
61
$artifacts | ForEach-Object {
62
$artifactName = $_.name
63
+
64
if($set.Add($artifactName)) {
65
Write-Host "Processing artifact: '$artifactName. Downloading from: $($_.resource.downloadUrl)"
66
@@ -98,8 +99,11 @@ do {
98
99
} | Format-Table
100
101
exec { node build/azure-pipelines/common/createAsset.js $product $os $arch $type $asset.Name $asset.FullName }
- $artifactName >> $ARTIFACT_PROCESSED_FILE_PATH
102
}
103
104
+ # Mark the artifact as processed. Make sure to keep the previously
105
+ # processed artifacts in the file as well, not just from this run.
106
+ $artifactName >> $ARTIFACT_PROCESSED_FILE_PATH
107
108
109
# Get the timeline and see if it says the other stage completed
0 commit comments