Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
novicejava1 authored Jul 29, 2023
1 parent c769c6c commit 4d0df39
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@ jobs:
uses: actions/checkout@v2
with:
path: master

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
architecture: x64

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade Cython==0.29.33
- name: Build with Buildozer
uses: ArtemSBulgakov/buildozer-action@v1
Expand All @@ -43,17 +54,6 @@ jobs:
path: data
ref: data # Branch name

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
architecture: x64

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade Cython==0.29.33
- name: Push binary to data branch
if: github.event_name == 'push'
run: python master/.ci/move_binary.py "${{ steps.buildozer.outputs.filename }}" master data bin

0 comments on commit 4d0df39

Please sign in to comment.