mirror of
https://github.com/OMGeeky/Kivy-Shopping-List.git
synced 2026-01-05 19:20:24 +01:00
31 lines
628 B
YAML
31 lines
628 B
YAML
name: build
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
|
|
jobs:
|
|
# Build job. Builds app for Android with Buildozer test
|
|
build:
|
|
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: .
|
|
buildozer_version: stable
|
|
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: package
|
|
path: ${{ steps.buildozer.outputs.filename }}
|