From 0fcad7bb4ab08a2fec6527467351664722e2018b Mon Sep 17 00:00:00 2001 From: alk <45172705+altalk23@users.noreply.github.com> Date: Sat, 30 Dec 2023 20:55:28 +0300 Subject: [PATCH] Update README.md --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eb049ae..7db800b 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Usually this is done using a matrix, and due to limitations on how much actions To do this, make sure to set `combine: true` on the build action! -## Building a mod on mac and windows, and then combining it +## Building a mod on mac, android armv7 and armv8, windows, and then combining it Full workflow: ```yml name: Build Geode Mod @@ -85,12 +85,20 @@ jobs: config: - name: Windows os: windows-latest - target: Windows + target: Win32 - name: macOS os: macos-latest target: MacOS + - name: Android32 + os: ubuntu-latest + target: Android32 + + - name: Android64 + os: ubuntu-latest + target: Android64 + name: ${{ matrix.config.name }} runs-on: ${{ matrix.config.os }}