Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Alphalaneous committed Jun 21, 2024
1 parent 17681be commit 6e5c9c7
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 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:
- '**'
- "**"

jobs:
build:
Expand All @@ -15,9 +15,6 @@ jobs:
- name: Windows
os: windows-latest

#- name: macOS
# os: macos-latest

- name: Android32
os: ubuntu-latest
target: Android32
Expand All @@ -30,28 +27,28 @@ jobs:
runs-on: ${{ matrix.config.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build the mod
uses: geode-sdk/build-geode-mod@main

with:
sdk: nightly
cli: 'v3.0.0-beta.1'
sdk: 'nightly'
cli: 'v3.0.0'
bindings: geode-sdk/bindings
bindings-ref: main
combine: true
target: ${{ matrix.config.target }}
bindings: Alphalaneous/bindings


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

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

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

0 comments on commit 6e5c9c7

Please sign in to comment.