Skip to content

Commit

Permalink
new workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Capeling committed Aug 12, 2024
1 parent 952dba8 commit 0c80251
Showing 1 changed file with 10 additions and 9 deletions.
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 @@ -14,9 +14,9 @@ jobs:
config:
- name: Windows
os: windows-latest
#- name: macOS
# os: macos-latest

- name: macOS
os: macos-latest

- name: Android32
os: ubuntu-latest
Expand All @@ -30,25 +30,26 @@ 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
bindings: geode-sdk/bindings
bindings-ref: main
combine: true
target: ${{ matrix.config.target }}

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 }}

0 comments on commit 0c80251

Please sign in to comment.