PowerShell/tools/releaseBuild/azureDevOps/templates/expand-compliance.yml
Travis Plunk e96b0bf85b
Refactor Unified Release Build (#8804)
Refactor Unified Release Build
  - Make injecting the nuget.config a template
  - Make setting the version variable a template
  - Add parameters to templates where needed
  - Run defender scan before uploading linux packages (and rename step to plain english)
2019-01-31 15:10:19 -08:00

13 lines
636 B
YAML

parameters:
architecture: x86
version: 6.2.0
steps:
- powershell: |
Expand-Archive -Path "$(System.ArtifactsDirectory)\results\PowerShell-${{ parameters.version }}-symbols-win-${{ parameters.architecture }}.zip" -Destination "$(Build.StagingDirectory)\symbols\${{ parameters.architecture }}"
displayName: Expand symbols zip - ${{ parameters.architecture }}
- powershell: |
tools/releaseBuild/createComplianceFolder.ps1 -ArtifactFolder "$(Build.StagingDirectory)\symbols\${{ parameters.architecture }}" -VSTSVariableName 'CompliancePath'
displayName: Expand Compliance file - ${{ parameters.architecture }}