Skip to content

Commit

Permalink
Add SBOM task to build pipelines (#267)
Browse files Browse the repository at this point in the history
* add SBOM task to build pipelines

* fix path

* add generation task to release pipeline

* update task name

Co-authored-by: Ryan Fu <Fu.Ryan@microsoft.com>
  • Loading branch information
ryfu-msft and Ryan Fu authored May 3, 2022
1 parent 8928d8c commit d063463
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pipelines/azure-pipelines.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,11 @@ jobs:
$(appxBundlePath)
$(appxBundlePath).txt
- task: AzureArtifacts.manifest-generator-task.manifest-generator-task.ManifestGeneratorTask@0
displayName: 'Generate SBOM'
inputs:
BuildDropPath: '$(Build.ArtifactStagingDirectory)'

- publish: $(Build.ArtifactStagingDirectory)
artifact: wingetcreate
displayName: Publish appx, exe, and hash files
Expand Down
5 changes: 5 additions & 0 deletions pipelines/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,11 @@ jobs:
/p:UapAppxPackageBuildMode=SideloadOnly
/p:AppxPackageSigningEnabled=false'

- task: AzureArtifacts.manifest-generator-task.manifest-generator-task.ManifestGeneratorTask@0
displayName: 'Generate SBOM'
inputs:
BuildDropPath: '$(appxPackageDir)'

- publish: $(appxBundlePath)
artifact: msixbundle
displayName: Publish msix bundle
Expand Down

0 comments on commit d063463

Please sign in to comment.