Skip to content

Instantly share code, notes, and snippets.

@kaustubhgupta
Created December 3, 2020 20:13
Show Gist options
  • Select an option

  • Save kaustubhgupta/09cbc6fc3a379842e4809484c773916e to your computer and use it in GitHub Desktop.

Select an option

Save kaustubhgupta/09cbc6fc3a379842e4809484c773916e to your computer and use it in GitHub Desktop.
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