Skip to content

Commit

Permalink
Update build_android.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lmbelo authored Nov 14, 2024
1 parent be0d0fa commit 64b07ea
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/build_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,20 @@ jobs:
- { ARCH: arm, API: 21, PYVER: 3.9.16 }
- { ARCH: arm64, API: 21, PYVER: 3.9.16 }

- { ARCH: arm, API: 21, PYVER: 3.10.7 }
- { ARCH: arm64, API: 21, PYVER: 3.10.7 }
- { ARCH: arm, API: 21, PYVER: 3.10.11 }
- { ARCH: arm64, API: 21, PYVER: 3.10.11 }

- { ARCH: arm, API: 21, PYVER: 3.11.2 }
- { ARCH: arm64, API: 21, PYVER: 3.11.2 }
- { ARCH: arm, API: 21, PYVER: 3.11.9 }
- { ARCH: arm64, API: 21, PYVER: 3.11.9 }

- { ARCH: arm, API: 21, PYVER: 3.12.0 }
- { ARCH: arm64, API: 21, PYVER: 3.12.0 }
- { ARCH: arm, API: 21, PYVER: 3.12.7 }
- { ARCH: arm64, API: 21, PYVER: 3.12.7 }

- { ARCH: arm, API: 21, PYVER: 3.13.0 }
- { ARCH: arm64, API: 21, PYVER: 3.13.0 }
steps:
- name: Checkout main repo
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Update scripts permission
run: |
find -type f -iname "*.sh" -exec chmod +x {} \;
Expand All @@ -56,8 +59,9 @@ jobs:
sudo 7z a -tzip $package_filename * -r
echo ::set-output name=package_filename::$package_filename
- name: Save build
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ steps.create_package.outputs.package_filename }}
path: python3-android/embedabble/${{ steps.create_package.outputs.package_filename }}
if-no-files-found: error
- name: Publish to Digital Ocean
Expand Down

0 comments on commit 64b07ea

Please sign in to comment.