Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
java-version: 21
cache: 'gradle'
- name: make gradle wrapper executable
run: chmod +x ./gradlew
Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/release.yml.disabled
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release

on:
push:
tags:
- 'v*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: setup jdk
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 21
cache: 'gradle'
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: publish
run: ./gradlew publishCurseForge publishModrinth publish
env:
CURSEFORGE_API_KEY: ${{ secrets.CURSEFORGE_API_KEY }}
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bin
*.launch
.settings
.metadata
.classpath
.cla*
.project

# idea
Expand All @@ -16,11 +16,10 @@ out
# gradle
build
.gradle
deploy.properties

# other
run
logs
libs

# Files from Forge MDK
forge*changelog.txt
repo
3 changes: 1 addition & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
MIT License

Copyright (c) 2017 - Original Author is MrRiegel as seen here https://github.com/MrRiegel
- Secondary author Sam Bassett aka Lothrazar https://minecraft.curseforge.com/members/Lothrazar
Copyright (c) 2026 Lothrazar

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading
Loading