parameters:
- name: SolutionName
displayName: Name of the Solution
type: string
default: '<Name of the Solution>'
trigger: none
pool:
vmImage: 'windows-latest'
steps:
- checkout: self
persistCredentials: true
- task: PowerPlatformToolInstaller@0
inputs:
DefaultVersion: true
- task: PowerPlatformExportSolution@0
inputs:
authenticationType: 'PowerPlatformSPN'
PowerPlatformSPN: 'ENV-D-INTERN-1'
SolutionName: '${{ parameters.SolutionName}}'
SolutionOutputFile: '$(Build.ArtifactStagingDirectory)\${{ parameters.SolutionName}}.zip'
AsyncOperation: true
MaxAsyncWaitTime: '60'
- task: PowerPlatformChecker@0
inputs:
PowerPlatformSPN: 'ENV-D-INTERN-1'
FilesToAnalyze: '$(Build.ArtifactStagingDirectory)\${{ parameters.SolutionName}}.zip'
RuleSet: '0ad12346-e108-40b8-a956-9a8f95ea18c9'
Does anyone have an idea where I can look for a fix to this error?