Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Commit

Permalink
jitpack
Browse files Browse the repository at this point in the history
  • Loading branch information
TexBlock committed Oct 8, 2023
1 parent 1a08baa commit 374e5b8
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 9 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: build
on:
workflow_dispatch:
pull_request:
push:

jobs:
build:
runs-on: ubuntu-latest
steps:

- name: checkout repository
uses: actions/checkout@v3

- name: make gradle wrapper executable
run: chmod +x ./gradlew

- name: setup Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: gradle

- name: build
run: ./gradlew build

- name: capture build artifacts
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: build/libs/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<div align="center">
<img src="https://i.imgur.com/yVFgPpr.png" alt="Logo by @voxel_dani on Twitter" width="250">
<h1>Flywheel DM-Earth Edition</h1>
<h1>Flywheel Fabric DM-Earth Edition</h1>
<h6>A modern engine for modded Minecraft.</h6>
<a href='https://ci.tterrag.com/job/Flywheel/job/Fabric/job/1.18/'><img src='https://ci.tterrag.com/job/Flywheel/job/Fabric/job/1.18/badge/icon' alt="Jenkins"></a>
<a href="https://discord.gg/xjD59ThnXy"><img src="https://img.shields.io/discord/841464837406195712?color=5865f2&label=Discord&style=flat" alt="Discord"></a>
<a href="https://discord.gg/sHUtFBxVdj"><img src="https://img.shields.io/discord/841464837406195712?color=5865f2&label=Discord&style=flat" alt="Discord"></a>
<br>
</div>

Expand Down
2 changes: 2 additions & 0 deletions jitpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
jdk:
- openjdk17
15 changes: 8 additions & 7 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@
"id": "flywheel",
"version": "${version}",

"name": "Flywheel",
"name": "Flywheel Fabric DM-Earth Edition",
"description": "A modern engine for modded minecraft.",
"authors": [
"Jozufozu",
"Pepper_Bell"
"Pepper_Bell",
"TexTrue",
"DM-Earth"
],
"contact": {
"homepage": "https://www.curseforge.com/minecraft/mc-mods/flywheel",
"issues": "https://github.com/Jozufozu/Flywheel/issues",
"sources": "https://github.com/Jozufozu/Flywheel"
"issues": "https://github.com/DM-Earth/flywheel-fabric-dme-edition/issues",
"sources": "https://github.com/DM-Earth/flywheel-fabric-dme-edition"
},

"license": "MIT",
Expand All @@ -31,8 +32,8 @@
],

"depends": {
"fabricloader": ">=0.11.3",
"fabric": ">=0.84.0",
"fabricloader": "*",
"fabric": "*",
"minecraft": ">=1.20.1",
"java": ">=17"
}
Expand Down

0 comments on commit 374e5b8

Please sign in to comment.