Skip to content
This repository was archived by the owner on Apr 30, 2024. It is now read-only.

Commit 8ef85b4

Browse files
committed
Merge branch 'rewrite/main' of https://github.com/UWPCommunity/Quarrel into rewrite/main
2 parents 8edf854 + 92c8200 commit 8ef85b4

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

azure-pipelines-package-alpha.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ variables:
2424
msixPackages: '$(appxPackageDir)\**\\*.msix'
2525

2626
steps:
27+
- task: DownloadSecureFile@1
28+
displayName: Get Signing Certificate
29+
name: signingCertificate
30+
inputs:
31+
secureFile: 'Quarrel-Alpha_Key.pfx'
2732
- task: DownloadSecureFile@1
2833
displayName: Get AppCenterToken
2934
name: appCenterToken
@@ -38,7 +43,6 @@ steps:
3843
env:
3944
APP_CENTER_TOKEN_PATH: $(appCenterToken.secureFilePath)
4045

41-
4246
- task: NuGetToolInstaller@1
4347
displayName: 'NuGet Installer'
4448

@@ -53,12 +57,16 @@ steps:
5357
solution: '$(solution)'
5458
platform: 'x64'
5559
configuration: '$(buildConfiguration)'
56-
msbuildArgs: '/p:AppxBundlePlatforms="$(buildPlatform)"
60+
msbuildArgs: '/t:Quarrel
61+
/p:AppxBundlePlatforms="$(buildPlatform)"
5762
/p:AppxPackageDir="$(appxPackageDir)"
5863
/p:OutputPath="$(buildDir)"
5964
/p:AppxBundle=Always
6065
/p:UapAppxPackageBuildMode=StoreUpload
61-
/t:Quarrel'
66+
/p:AppxPackageSigningEnabled=true
67+
/p:PackageCertificateKeyFile="$(signingCertificate.secureFilePath)"
68+
/p:PackageCertificateThumbprint="$(SignedCertificateThumbprint-Alpha)"
69+
/p:PackageCertificatePassword="$(SignCertificatePassword-Alpha)"'
6270

6371
- task: CopyFiles@2
6472
displayName: 'Copy Files to: $(build.artifactStagingDirectory)'

0 commit comments

Comments
 (0)