feat: start and stop API server within activity #8
This file contains hidden or 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: 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 |