6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit e17eb65c

AuthorNikolaj King<nikolaj.king@gmail.com>
Date2024-08-07 11:35:24 +0200
Update azure-pipelines.yml for Azure Pipelines

Changed files

azure/azure-pipelines.yml | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

Diff

diff --git a/azure/azure-pipelines.yml b/azure/azure-pipelines.yml
index 350c64b7..08822a86 100644
--- a/azure/azure-pipelines.yml
+++ b/azure/azure-pipelines.yml
@@ -2,11 +2,29 @@ variables:
- name: environment
- name: stageName
-stages:
+stages:
- template: /azure/templates/build-android.yml
parameters:
stageName: ${{ variables.stageName }}
environment: ${{ variables.environment }}
+- stage:
+ jobs:
+ - deployment:
+ strategy:
+ runOnce:
+ deploy:
+ steps:
+ - task: GooglePlayRelease@4
+ inputs:
+ serviceConnection: 'Google play'
+ applicationId: 'com.comwell.phoenix.${{ variables.environment }}'
+ action: 'SingleBundle'
+ bundleFile: '$(Build.ArtifactStagingDirectory)/*.aab'
+ track: 'internal'
+ releaseName: 'test connection'
+ isDraftRelease: true
+
+