diff options
author | savilli <78875209+savilli@users.noreply.github.com> | 2022-08-25 23:48:49 +0200 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2022-09-14 13:48:06 +0200 |
commit | 79010e972ebe6e381d6b5402e5399ad4117dd374 (patch) | |
tree | f0b63abb2d1d75de53c81c6ec34bbf288ff41995 /.github | |
parent | 0ca530e25179e328df83d85a3af7ae9ce44ddfa4 (diff) | |
download | minetest-79010e972ebe6e381d6b5402e5399ad4117dd374.tar.gz minetest-79010e972ebe6e381d6b5402e5399ad4117dd374.tar.bz2 minetest-79010e972ebe6e381d6b5402e5399ad4117dd374.zip |
Fix and enable x86 build for Android (#12700)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/android.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 20411a332..8cbe5e09f 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -40,3 +40,13 @@ jobs: with: name: Minetest-arm64-v8a.apk path: android/app/build/outputs/apk/release/app-arm64-v8a-release-unsigned.apk + - name: Save x86 artifact + uses: actions/upload-artifact@v3 + with: + name: Minetest-x86.apk + path: android/app/build/outputs/apk/release/app-x86-release-unsigned.apk + - name: Save x86_64 artifact + uses: actions/upload-artifact@v3 + with: + name: Minetest-x86_64.apk + path: android/app/build/outputs/apk/release/app-x86_64-release-unsigned.apk |