forked from Clones/Controlify
Initial commit
This commit is contained in:
1
.github/FUNDING.yml
vendored
Normal file
1
.github/FUNDING.yml
vendored
Normal file
@ -0,0 +1 @@
|
||||
ko_fi: isxander
|
33
.github/README.md
vendored
Normal file
33
.github/README.md
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
<div align="center">
|
||||
|
||||
<img src="https://raw.githubusercontent.com/isXander/FabricModTemplate/1.19/src/main/resources/icon.png" alt="Icon">
|
||||
|
||||
# FabricModTemplate
|
||||
|
||||
[](https://fabricmc.net)
|
||||

|
||||
[](https://short.isxander.dev/discord)
|
||||
|
||||
[](https://modrinth.com/mod/<modname-mr>)
|
||||
[](https://curseforge.com/minecraft/mc-mods/<modname-cf>)
|
||||
|
||||
[](https://ko-fi.com/isxander)
|
||||
|
||||
Fabric mod template for Xander with some gradle goodies!
|
||||
|
||||
<img src="https://raw.githubusercontent.com/isXander/FabricModTemplate/1.19/.github/screenshot.png" width="650" alt="Screenshot">
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
## Why was this mod created (or whatever)?
|
||||
|
||||
To generate template for my mods.
|
||||
|
||||
## Other info
|
||||
|
||||
Can be inserted here.
|
||||
|
||||
## License
|
||||
|
||||
This mod is under the [GNU Lesser General Public License, v3.0](/LICENSE).
|
50
.github/workflows/gradle.yml
vendored
Normal file
50
.github/workflows/gradle.yml
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
name: Gradle CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
paths-ignore:
|
||||
- 'README.md'
|
||||
- 'LICENSE'
|
||||
- '.gitignore'
|
||||
- '.editorconfig'
|
||||
- 'changelogs/**'
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
paths-ignore:
|
||||
- 'README.md'
|
||||
- 'LICENSE'
|
||||
- '.gitignore'
|
||||
- '.editorconfig'
|
||||
- 'changelogs/**'
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
name: Build with gradle
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up JDK
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: 17
|
||||
distribution: temurin
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
~/.gradle/caches
|
||||
~/.gradle/wrapper
|
||||
./.gradle/loom-cache
|
||||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-gradle-
|
||||
- name: Grant execute permission for gradlew
|
||||
run: chmod +x gradlew
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew build --no-daemon
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
path: build/libs/*.jar
|
Reference in New Issue
Block a user