From 4d0df39cbd9d617b9bad9090c95d0c38c8391bef Mon Sep 17 00:00:00 2001 From: novicejava1 Date: Sat, 29 Jul 2023 14:02:32 +0530 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8d7258b..4b5c203 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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