gha: fix android build, last time

This commit is contained in:
Alibek Omarov 2021-07-03 19:54:56 +03:00
parent 1ff369ae0b
commit ef53b5a644
2 changed files with 6 additions and 7 deletions

View File

@ -57,12 +57,9 @@ jobs:
- name: Build engine
run: bash scripts/gha/build_${{ matrix.targetos }}.sh
- name: Upload engine (android 32)
if: matrix.targetos == 'android' && matrix.targetarch == '32'
run: bash scripts/continious_upload.sh xashdroid.apk
- name: Upload engine (android 64)
if: matrix.targetos == 'android' && matrix.targetarch == '64'
run: bash scripts/continious_upload.sh xashdroid-64-test.apk
- name: Upload engine (android)
if: matrix.targetos == 'android'
run: bash scripts/continious_upload.sh xashdroid-${{ matrix.targetarch }}.apk
- name: Upload engine (motomagx)
if: matrix.targetos == 'motomagx'
run: bash scripts/continious_upload.sh xash3d-fwgs-magx.7z

View File

@ -20,5 +20,7 @@ export STRIP=llvm-strip-12
sh compile.sh release
if [[ "$GH_CPU_ARCH" == "64" ]]; then
mv xashdroid.apk xashdroid-64-test.apk
mv xashdroid.apk ../xashdroid-64.apk
else
mv xashdroid.apk ../xashdroid-32.apk
fi