1
0
Fork 0
mirror of https://github.com/ArtemSBulgakov/buildozer-action.git synced 2024-08-16 10:09:52 +02:00
gh-buildozer-action/.github/workflows/build.yml

55 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2020-06-23 14:16:58 +02:00
name: Build
on:
push:
branches-ignore:
- data
- gh-pages
2020-07-29 15:16:16 +02:00
tags:
- '**'
pull_request:
branches-ignore:
- data
- gh-pages
2020-06-23 14:16:58 +02:00
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
with:
path: master
2020-06-23 14:16:58 +02:00
- name: Build with Buildozer
uses: ./master # REPLACE WITH ArtemSBulgakov/buildozer-action@v1
2020-06-23 14:16:58 +02:00
id: buildozer
with:
repository_root: master
2020-06-23 14:16:58 +02:00
workdir: test_app
buildozer_version: stable
2020-12-24 19:06:29 +01:00
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: package
path: ${{ steps.buildozer.outputs.filename }}
- name: Checkout
uses: actions/checkout@v2
with:
path: data
ref: data # Branch name
- name: Set up Python
uses: actions/setup-python@v2
2020-06-23 14:16:58 +02:00
with:
python-version: 3.7
architecture: x64
- name: Push binary to data branch
2020-12-24 19:06:29 +01:00
if: github.event_name == 'push'
run: python master/.ci/move_binary.py "${{ steps.buildozer.outputs.filename }}" master data bin