diff --git a/.azure-pipelines/generate-beta-rollup-module.yml b/.azure-pipelines/generate-beta-rollup-module.yml index d1af3a8300f..5a8347a077d 100644 --- a/.azure-pipelines/generate-beta-rollup-module.yml +++ b/.azure-pipelines/generate-beta-rollup-module.yml @@ -37,7 +37,7 @@ jobs: inputs: ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet' FolderPath: $(MODULE_PATH) - Pattern: '$(MODULE_PREFIX).psd1, $(MODULE_PREFIX).*.psd1, $(MODULE_PREFIX).*.format.ps1xml, *.ps1' + Pattern: '$(MODULE_PREFIX).psm1, $(MODULE_PREFIX).*.format.ps1xml, *.ps1' signConfigType: inlineSignParams inlineOperation: | [ diff --git a/.azure-pipelines/generate-v1.0-rollup-module.yml b/.azure-pipelines/generate-v1.0-rollup-module.yml index d16444f2f50..565f433e7c9 100644 --- a/.azure-pipelines/generate-v1.0-rollup-module.yml +++ b/.azure-pipelines/generate-v1.0-rollup-module.yml @@ -37,7 +37,7 @@ jobs: inputs: ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet' FolderPath: $(MODULE_PATH) - Pattern: '$(MODULE_PREFIX).psd1, $(MODULE_PREFIX).*.psd1, $(MODULE_PREFIX).*.format.ps1xml, *.ps1' + Pattern: '$(MODULE_PREFIX).psm1, $(MODULE_PREFIX).*.format.ps1xml, *.ps1' signConfigType: inlineSignParams inlineOperation: | [ diff --git a/tools/DownloadOpenApiDoc.ps1 b/tools/DownloadOpenApiDoc.ps1 index f4d51c0bbaa..6585cc762dd 100644 --- a/tools/DownloadOpenApiDoc.ps1 +++ b/tools/DownloadOpenApiDoc.ps1 @@ -5,12 +5,11 @@ Param( [string] $GraphVersion ) -$OpenApiDocOutput = Join-Path -Path $OpenApiDocOutput -ChildPath $GraphVersion if(-not (Test-Path $OpenApiDocOutput)) { New-Item -Path $OpenApiDocOutput -Type Directory } -$OpenApiBaseUrl = "https://graphslice.azurewebsites.net" +$OpenApiBaseUrl = "https://graphexplorerapi.azurewebsites.net" $OpenApiServiceUrl = ("$OpenApiBaseUrl/`$openapi?tags={0}&title=$ModuleName&openapiversion=3&style=Powershell&graphVersion=$GraphVersion" -f $ModuleRegex) Write-Host -ForegroundColor Green "Downloading OpenAPI doc for '$ModuleName' module: $OpenApiServiceUrl"