aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/android.yml
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2022-05-01 14:44:48 +0200
committersfan5 <sfan5@live.de>2022-05-06 15:15:53 +0200
commite108954633df9e4b2e235dd8e16b64f846a2d251 (patch)
tree01bd7adef3cdecde9e728c302a545ef5ff78de68 /.github/workflows/android.yml
parent47cf257c4098f087d4dc46ac28ddb39141222b0c (diff)
downloadhax-minetest-server-e108954633df9e4b2e235dd8e16b64f846a2d251.tar.gz
hax-minetest-server-e108954633df9e4b2e235dd8e16b64f846a2d251.zip
Sort out some issues with our CI setup
* add missing apt-get update where needed * move some jobs to run on ubuntu-20.04 * update actions plugins to latest * speed up the job that runs multiplayer tests
Diffstat (limited to '')
-rw-r--r--.github/workflows/android.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml
index cc5fe83ef..20411a332 100644
--- a/.github/workflows/android.yml
+++ b/.github/workflows/android.yml
@@ -23,7 +23,7 @@ jobs:
build:
runs-on: ubuntu-20.04
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Install deps
run: |
sudo apt-get update
@@ -31,12 +31,12 @@ jobs:
- name: Build with Gradle
run: cd android; ./gradlew assemblerelease
- name: Save armeabi artifact
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
with:
name: Minetest-armeabi-v7a.apk
path: android/app/build/outputs/apk/release/app-armeabi-v7a-release-unsigned.apk
- name: Save arm64 artifact
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
with:
name: Minetest-arm64-v8a.apk
path: android/app/build/outputs/apk/release/app-arm64-v8a-release-unsigned.apk