From b26be5b4fdf2b2aef1d38ede24c64cf5b3c1ce02 Mon Sep 17 00:00:00 2001 From: ZIlko Date: Tue, 10 Dec 2024 10:19:55 -0600 Subject: [PATCH] Create android copy.yml --- .github/workflows/android copy.yml | 50 ++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/workflows/android copy.yml diff --git a/.github/workflows/android copy.yml b/.github/workflows/android copy.yml new file mode 100644 index 0000000..4be8134 --- /dev/null +++ b/.github/workflows/android copy.yml @@ -0,0 +1,50 @@ +name: Build Android 2 + +on: + workflow_dispatch: + push: + branches: + - "d" + +jobs: + build: + strategy: + fail-fast: false + matrix: + config: + + - name: Android32 + os: ubuntu-latest + target: Android32 + + - name: Android64 + os: ubuntu-latest + target: Android64 + + name: ${{ matrix.config.name }} + runs-on: ${{ matrix.config.os }} + + steps: + - uses: actions/checkout@v4 + + - name: Build the mod + uses: geode-sdk/build-geode-mod@main + with: + bindings: geode-sdk/bindings + bindings-ref: main + combine: false + target: ${{ matrix.config.target }} + + package: + name: Package builds + runs-on: ubuntu-latest + needs: ['build'] + + steps: + - uses: geode-sdk/build-geode-mod/combine@main + id: build + + - uses: actions/upload-artifact@v4 + with: + name: Build Output + path: ${{ steps.build.outputs.build-output }}