Skip to content

feat: start and stop API server within activity #8

feat: start and stop API server within activity

feat: start and stop API server within activity #8

Workflow file for this run

name: Build Android APK
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
uses: ./.github/workflows/build-apk.yml
upload-artifact:
runs-on: ubuntu-latest
needs: build
steps:
- name: Download APK artifact
uses: actions/download-artifact@v4
with:
name: built-apk
path: ./
- name: Upload APK artifact
uses: actions/upload-artifact@v4
with:
name: wasmedge-android-apk
path: app-debug.apk
retention-days: 30