Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/digreatbrian/buildozer-action
Action to build Kivy App to APK
https://github.com/digreatbrian/buildozer-action
android apk buildozer kivy kivy-app-to-apk
Last synced: 2 months ago
JSON representation
Action to build Kivy App to APK
- Host: GitHub
- URL: https://github.com/digreatbrian/buildozer-action
- Owner: digreatbrian
- License: mit
- Created: 2023-11-25T17:39:15.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-24T05:08:14.000Z (3 months ago)
- Last Synced: 2024-10-24T22:49:30.917Z (3 months ago)
- Topics: android, apk, buildozer, kivy, kivy-app-to-apk
- Homepage:
- Size: 74.2 KB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ✨ Build Kivy App to APK using Buildozer ✨
Effortlessly build your Kivy app into an APK with this GitHub Action! 🚀
## Key features:
* Simple setup: Use the provided code snippet in your workflow.
* Automates builds: Triggered on every push to the main branch.
* Customizable: Adjust the buildozer-cmd, python-version and work-dir parameters if needed.## How to use:
* Copy the code below into your .github/workflows/ directory.
* Modify the buildozer-cmd, python-version and work-dir if necessary.
* Commit and push to your main branch to trigger the build.### How to use
```yml
on:
push:
branches: [ main ]jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build APK
uses: digreatbrian/buildozer-action@v2
with:
python-version: 3.8
buildozer-cmd: buildozer -v android debug- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: package
path: ./bin/*.apk
```## Contributions welcome!
Feel free to submit issues, suggestions, or pull requests to improve this action. Let's make it even better together! 🤗Happy coding! 😄