app_test/.github/workflows/buildozer.yml

37 lines
880 B
YAML
Raw Normal View History

2023-05-10 01:21:10 +02:00
---
name: Build
on: [push, pull_request]
jobs:
# Build job. Builds app for Android with Buildozer
build-android:
name: Build for Android
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build with Buildozer
uses: actions/gh-buildozer-action@v1
id: buildozer
with:
workdir: hello_world
buildozer_version: stable
2023-05-11 02:00:24 +02:00
- name: List all files
2023-05-11 03:03:58 +02:00
run: ls -la .
- name: List all files 2
run: ls -la .buildozer/
- name: List all files 3
run: ls -la ~/
- name: List all files 4
run: ls -la .buildozer/*
2023-05-11 02:00:24 +02:00
2023-05-11 01:59:22 +02:00
- name: Publish apk as base64 🧪
2023-05-11 03:03:58 +02:00
run: cat /workspace/l3d/app_test/hello_world/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/dists/helloworld/build/outputs/apk/debug/helloworld*.apk | base64
2023-05-11 01:59:22 +02:00