Android demo app for simple-chatbot example #1
Workflow file for this run
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: Simple Chatbot Android Client | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "**" | |
workflow_dispatch: | |
inputs: | |
sdk_git_ref: | |
type: string | |
description: "Which git ref of the app to build" | |
concurrency: | |
group: build-android-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
sdk: | |
name: "Demo" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.inputs.sdk_git_ref || github.ref }} | |
- name: "Install Java" | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Build demo app | |
working-directory: examples/simple-chatbot/examples/android | |
run: ./gradlew :simple-chatbot-client:assembleDebug | |
- name: Upload demo APK | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Simple Chatbot Android Client | |
path: examples/simple-chatbot/examples/android/simple-chatbot-client/build/outputs/apk/debug/simple-chatbot-client-debug.apk |