Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSillyDoggo committed Jan 19, 2024
2 parents eb45f88 + c30c1e4 commit f9e160d
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
push:
branches:
- "main"
- '**'

jobs:
build:
Expand All @@ -14,19 +14,27 @@ jobs:
config:
- name: Windows
os: windows-latest
target: Win32
- 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@v3
with:
submodules: 'recursive'


- name: Build the mod
uses: geode-sdk/build-geode-mod@main
with:
combine: true
sdk: nightly
target: ${{ matrix.config.target }}

package:
name: Package builds
Expand All @@ -39,5 +47,5 @@ jobs:

- uses: actions/upload-artifact@v3
with:
name: Geode Mod Build Output
name: Build Output
path: ${{ steps.build.outputs.build-output }}

0 comments on commit f9e160d

Please sign in to comment.