@@ -74,7 +74,7 @@ stages:
74
74
``````
75
75
- Install the latest Az.Accounts module unless the OOB build requires a specific version.
76
76
``````powershell
77
- Install-Module Az.Accounts -Repository PSGallery
77
+ Install-Module Az.Accounts -Repository PSGallery
78
78
``````
79
79
- Use Az.Tools.Installer to install the OOB build.
80
80
``````powershell
@@ -118,7 +118,6 @@ stages:
118
118
displayName : Create PR to main branch
119
119
condition : and(succeeded(), eq(variables['NeedBumpUp'], 'true'))
120
120
121
-
122
121
- task : PowerShell@2
123
122
displayName : publish oob tools
124
123
inputs :
@@ -127,6 +126,13 @@ stages:
127
126
Copy-Item .\tools\ModulePublisher.psd1 -Destination OOB
128
127
Copy-Item .\tools\ModulePublisher.psm1 -Destination OOB
129
128
Copy-Item .\tools\NuGet.exe -Destination OOB
129
+
130
+ - task : ManifestGeneratorTask@0
131
+ displayName : ' Generation Task'
132
+ inputs :
133
+ PackageName : ' Azure PowerShell - ${{ parameters.ServiceName }}'
134
+ BuildDropPath : ' $(System.ArtifactsDirectory)/OOB'
135
+
130
136
- task : PublishBuildArtifacts@1
131
137
inputs :
132
138
PathtoPublish : OOB
@@ -172,4 +178,4 @@ stages:
172
178
$moduleName = $jsonObject.ModuleName
173
179
$context = New-AzStorageContext -StorageAccountName "$(TestStorageAccountName)"
174
180
$package = Get-Item "$(System.ArtifactsDirectory)/artifacts/Az.$moduleName.$versionNumber.nupkg"
175
- $package | Set-AzStorageBlobContent -Container "public" -Context $context -Force
181
+ $package | Set-AzStorageBlobContent -Container "public" -Context $context -Force
0 commit comments