File tree 2 files changed +19
-0
lines changed
2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ variables:
58
58
- name : ReleaseTagVar
59
59
value : ${{ parameters.ReleaseTagVar }}
60
60
- group : PoolNames
61
+ - group : MSIXSigningProfile
61
62
62
63
resources :
63
64
repositories :
Original file line number Diff line number Diff line change 75
75
displayName: Create MsixBundle
76
76
retryCountOnTaskFailure: 1
77
77
78
+ - task : onebranch.pipeline.signing@1
79
+ displayName : Sign MsixBundle
80
+ inputs :
81
+ command : ' sign'
82
+ signing_profile : $(MSIXProfile)
83
+ files_to_sign : ' **/*.msixbundle'
84
+ search_root : ' $(BundleDir)'
85
+
86
+ - pwsh : |
87
+ $signedBundle = Get-ChildItem -Path $(BundleDir) -Filter "*.msixbundle" -File
88
+ Write-Verbose -Verbose "Signed bundle: $signedBundle"
89
+
90
+ Copy-Item -Path $signedBundle -Destination $(ob_outputDirectory) -Verbose
91
+
92
+ Write-Verbose -Verbose "Uploaded Bundle:"
93
+ Get-ChildItem -Path $(ob_outputDirectory) | Write-Verbose -Verbose
94
+ displayName: Upload msixbundle to Artifacts
95
+
78
96
- task : AzurePowerShell@5
79
97
displayName : Upload msix to blob
80
98
inputs :
You can’t perform that action at this time.
0 commit comments