Skip to content

Instantly share code, notes, and snippets.

@karm435
Last active November 27, 2020 03:22
Show Gist options
  • Save karm435/9766238ffb3b81c0b7449e1bde5a27f0 to your computer and use it in GitHub Desktop.
Save karm435/9766238ffb3b81c0b7449e1bde5a27f0 to your computer and use it in GitHub Desktop.
android deployment
parameters:
- name: appCenterServiceConnection
displayName: 'Name of the service connection with App Center'
- name: appSlug
displayName: 'Path to application in AppCenter'
- name: appFile
displayName: 'Path of the apk to deploy'
- name: releaseNotes
displayName: 'Release notes'
- name: distributionGroupId
displayName: 'AppCenter distributionId'
- name: artifactName
displayName: "Name of the artifact"
steps:
- download: current
artifact: '${{ parameters.artifactName }}'
- task: AppCenterDistribute@3
inputs:
serverEndpoint: '${{parameters.appCenterServiceConnection}}'
appSlug: '${{ parameters.appSlug }}'
appFile: '${{parameters.appFile}}'
symbolsOption: 'Android'
destinationType: 'groups'
releaseNotesOption: 'input'
releaseNotesInput: '${{parameters.releaseNotes}}'
distributionGroupId: '${{parameters.distributionGroupId}}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment