Skip to content

Commit

Permalink
Add build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Cvolton committed Dec 13, 2023
1 parent 648929f commit 2f92fcb
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:

- name: macOS
os: macos-latest

- name: android
os: ubuntu-latest

name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
Expand All @@ -25,20 +28,21 @@ jobs:
- uses: actions/checkout@v3

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

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

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

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

0 comments on commit 2f92fcb

Please sign in to comment.