Update Assurance Test App APK #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Assurance Test App APK | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'Branch to be used when updating AssuranceTestApp' | |
required: true | |
jobs: | |
update-testapp: | |
runs-on: macos-latest | |
steps: | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
ref: ${{ github.event.inputs.branch }} | |
- name: Generate AssuranceTestApp APK | |
run: make build-app | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: Update Assurance Test App APK | |
title: Update AssuranceTestApp APK | |
base: ${{ github.event.inputs.branch }} |