forked from nventive/UnoApplicationTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.azure-pipelines-canary.yml
41 lines (37 loc) · 1.6 KB
/
.azure-pipelines-canary.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
trigger: # Start a new run as soon as a "canaries/build/(...)" branch is created.
branches:
include:
- canaries/build/*
variables:
- template: build/variables.yml
# Build the project using the desired parameters (in this case same as staging), but update all nuget packages to latest.
stages:
- stage: Build_Canary
condition: and(ne(variables['IsLightBuild'], 'true'), eq(variables['IsCanary'], 'true'))
dependsOn: []
jobs:
- template: build/stage-build.yml
parameters:
applicationEnvironment: Staging
androidKeyStoreFile: $(InternalKeystore)
androidVariableGroup: 'ApplicationTemplate.Distribution.Internal.Android'
iosProvisioningProfileFile: $(InternalProvisioningProfile)
iosCertificateFile: $(InternalCertificate)
iosVariableGroup: 'ApplicationTemplate.Distribution.Internal.iOS'
removeHyperlinksFromReleaseNotes: true
BannerVersionNameText: "CANARY"
- stage: FirebaseDistribution_TestFlight_Canary
condition: and(succeeded(), eq(variables['IsCanary'], 'true'))
dependsOn: Build_Canary
jobs:
- template: build/stage-release-firebase-app-distribution.yml
parameters:
applicationEnvironment: Staging
deploymentEnvironment: Firebase App Distribution
androidVariableGroup: 'ApplicationTemplate.Distribution.Internal.Android'
serviceConnectionKeyFileName: $(FirebaseAppDistributionServiceConnection)
artifactFileName: 'com.nventive.internal.applicationtemplate-Signed.apk'
- template: build/stage-release-appstore.yml
parameters:
applicationEnvironment: Staging
deploymentEnvironment: TestFlight