Skip to content

Commit

Permalink
Remove incompats, add workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Alphalaneous committed Mar 7, 2024
1 parent 56bf16b commit c78171f
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 21 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Build Geode Mod

on:
workflow_dispatch:
push:
branches:
- '**'

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

#- name: macOS
# os: macos-latest

- 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

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

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

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

- uses: actions/upload-artifact@v3
with:
name: Build Output
path: ${{ steps.build.outputs.build-output }}
22 changes: 1 addition & 21 deletions mod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"geode": "2.0.0-beta.20",
"gd": "2.204",
"version": "v0.5.9",
"version": "v0.5.10",
"id": "zalphalaneous.minecraft",
"name": "Minecraftify!",
"developer": "Alphalaneous",
Expand Down Expand Up @@ -33,26 +33,6 @@
"id": "muhammadgames.bettermenu",
"importance": "breaking",
"version": "*"
},
{
"id": "devcmb.cleanermenu",
"importance": "breaking",
"version": "*"
},
{
"id": "artoree.enhanced_menu",
"importance": "breaking",
"version": "*"
},
{
"id": "undefined0.minecraft_menu",
"importance": "breaking",
"version": "*"
},
{
"id": "skyward.no_robtop_logo",
"importance": "breaking",
"version": "*"
}
]
}

0 comments on commit c78171f

Please sign in to comment.