Created
December 3, 2020 20:13
-
-
Save kaustubhgupta/09cbc6fc3a379842e4809484c773916e to your computer and use it in GitHub Desktop.
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 | |
| on: | |
| push: | |
| 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: ArtemSBulgakov/buildozer-action@v1 | |
| id: buildozer | |
| with: | |
| workdir: <specify the directory of the app no don't mention this the app files are in root directory> | |
| buildozer_version: stable | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v2 | |
| with: | |
| name: package | |
| path: ${{ steps.buildozer.outputs.filename }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment