зеркало из
1
0
Форкнуть 0

Handle final release of inactive package's docs (#37038)

* in the case of a final release, this folder path will not exist. upload blobs should also gracefully handle this
This commit is contained in:
Scott Beddall 2024-08-27 14:44:30 -07:00 коммит произвёл GitHub
Родитель d368d4a53e
Коммит e015277369
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -195,7 +195,12 @@ stages:
- checkout: self
- pwsh: |
Get-ChildItem -Recurse $(Pipeline.Workspace)/${{parameters.DocArtifact}}/${{artifact.name}}
if (Test-Path "$(Pipeline.Workspace)/${{parameters.DocArtifact}}/${{artifact.name}}") {
Get-ChildItem -Recurse "$(Pipeline.Workspace)/${{parameters.DocArtifact}}/${{artifact.name}}"
}
else {
New-Item -ItemType Directory -Force -Path "$(Pipeline.Workspace)/${{parameters.DocArtifact}}/${{artifact.name}}"
}
workingDirectory: $(Pipeline.Workspace)
displayName: Output Visible Artifacts