fix: add buildozer-action commit #46
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: 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@v2 | |
- name: Build with Buildozer | |
uses: brvier/buildozer-action@3d1d1151a1019ca67807b31b9f28011a76ee972d | |
id: buildozer | |
with: | |
workdir: . | |
buildozer_version: stable | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: package | |
path: ${{ steps.buildozer.outputs.filename }} |