Skip to content

Commit

Permalink
d
Browse files Browse the repository at this point in the history
  • Loading branch information
ZiLko committed Jan 1, 2025
1 parent 98c7f1d commit ba7add8
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/android copy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Android 2
name: Build Geode Mod

on:
workflow_dispatch:
Expand All @@ -12,11 +12,18 @@ jobs:
fail-fast: false
matrix:
config:
- name: Windows
os: windows-latest
build-type: RelWithDebInfo

- name: Android32
os: ubuntu-latest
target: Android32

- name: Android64
os: ubuntu-latest
target: Android64

name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}

Expand All @@ -27,8 +34,10 @@ jobs:
uses: geode-sdk/build-geode-mod@main
with:
bindings: geode-sdk/bindings
build-config: ${{ matrix.config.build-type || 'Release' }}
export-pdb: true
bindings-ref: main
combine: false
combine: true
target: ${{ matrix.config.target }}

package:
Expand Down

0 comments on commit ba7add8

Please sign in to comment.