Create a release pipeline This Release Pipeline demo will go over: A task that builds an Android app to an APK file stored in Azure DevOps. For simplicity, we will skip the app building process and use an existing APK file. A task to execute an automation test on a Kobiton device using the built APK file. (Optional) A task to upload a new version of the app from APK file. An Artifact will be added the APK file. You can learn more about Artifacts on the Azure DevOps Documentation. There are many ways to create an artifact, but in this sample we will create a simple artifact containing the test APK file. On the left sidebar, click Repos > Files On the Clone to your computer section: Click the Generate Git Credentials button to display User Name and Password that will be used in a later step. Copy the URL below: https://AZURE_ORG_NAME@dev.azure.com/AZURE_ORG_NAME/AZURE_PROJECT_NAME/_git/AZURE_PROJECT_NAME On your local machine, open Terminal and enter: git clone GIT_URL Replace GIT_URL with the URL above, depending on your project setup. If prompted during the cloning process, use the Username and Password from step 2. In your local machine, copy the APK file to the cloned repository. Then cd to the repository and type this line in your terminal: git add . && git commit -m "Upload apk" && git push We copied the ApiDemos-debug. apk file in the /Downloads folder in to the Git repository. You can access and download the sample app here. Back to your Azure DevOps web page, confirm that the uploaded file is listed on your Azure DevOps Project. Create a Release Pipeline. On your Azure DevOps Project, click on the Release Pipeline page. We create a new Release pipeline, but an existing pipeline can be reused. Click the New pipeline button to create a new release pipeline. On the right sidebar, click Empty job to create an empty Release Stage. To add an Artifact, click on the Add an artifact button. To add an Artifact, click +Add an artifact. Select Azure Repository and enter the required information, and then click Add. In the Artifact dialog, do the following: Select Build from the Source type dropdown menu. For Project and Source, select the necessary project. Choose Default version to Latest. Then click Add. The pipeline now includes the newly created artifact. To add a task to the stage, click on 1 job, 0 task. You can add a Kobiton task to execute a test on a Kobiton device. Click on +Add a task to agent job to add a task to the stage. Click on the Kobiton icon to add a Kobiton task. Enter the required information to set up the task. You have successfully created the task. You can also create a task to upload a new version of the app from APK file. The next two sections will guide you on how to use these Kobiton Release Tasks.