Skip to content

Commit

Permalink
jh
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSillyDoggo committed Dec 29, 2023
1 parent 156dd04 commit d19530b
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build Geode Mod

on:
workflow_dispatch:
push:

jobs:
build:
strategy:
fail-fast: false
matrix:
config:
- name: Windows
os: windows-latest

- name: macOS
os: macos-latest

- name: android
os: ubuntu-latest

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

steps:
- uses: actions/checkout@v3

- name: Build the mod
uses: cvolton/build-geode-mod@main
with:
combine: true
sdk: 'latest'

package:
name: Package builds
runs-on: ubuntu-latest
needs: ['build']

steps:
- uses: cvolton/build-geode-mod@combine
id: build

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

0 comments on commit d19530b

Please sign in to comment.