-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a1e431
commit 500b31f
Showing
17 changed files
with
85 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,16 +69,11 @@ jobs: | |
MAVEN_USER: ${{ secrets.MAVEN_USERNAME }} | ||
MAVEN_PASS: ${{ secrets.MAVEN_PASSWORD }} | ||
|
||
# - name: Update Changelog | ||
# uses: Team-Resourceful/[email protected] | ||
# with: | ||
# release_version: ${{ steps.version.outputs.version }} | ||
# github_token: ${{ secrets.TEAM_RESOURCEFUL_BOT }} | ||
|
||
### Need to duplicate this block for fabric | ||
- name: Upload Forge Releases (Curse/Modrinth/Github) | ||
if: contains(steps.props.outputs.enabledPlatforms, 'forge') | ||
uses: Kir-Antipov/[email protected] | ||
- name: Upload NeoForge Releases (Curse/Modrinth/Github) | ||
id: forge_release | ||
if: contains(steps.props.outputs.enabledPlatforms, 'neoforge') | ||
uses: Kir-Antipov/[email protected] | ||
with: | ||
curseforge-id: ${{ vars.CURSE_ID }} | ||
curseforge-token: ${{ secrets.CURSE_API_KEY }} | ||
|
@@ -89,17 +84,18 @@ jobs: | |
github-tag: "v${{ steps.version.outputs.version }}" | ||
github-token: ${{ secrets.TEAM_RESOURCEFUL_BOT }} | ||
|
||
files: ./forge/build/libs/!(*-@(dev|sources|dev-shadow)).jar | ||
name: "[Forge] Highlight ${{ steps.version.outputs.version }}" | ||
files: ./neoforge/build/libs/!(*-@(dev|sources|dev-shadow)).jar | ||
name: "[NeoForge] Highlight ${{ steps.version.outputs.version }}" | ||
version: ${{ steps.version.outputs.version }} | ||
changelog-file: changelog.md | ||
loaders: forge | ||
loaders: neoforge | ||
game-versions: ${{ steps.props.outputs.minecraftVersion }} | ||
version-resolver: exact | ||
|
||
- name: Upload Fabric Releases (Curse/Modrinth/Github) | ||
id: fabric_release | ||
if: contains(steps.props.outputs.enabledPlatforms, 'fabric') | ||
uses: Kir-Antipov/mc-publish@v3.2 | ||
uses: Kir-Antipov/mc-publish@v3.3 | ||
with: | ||
curseforge-id: ${{ vars.CURSE_ID }} | ||
curseforge-token: ${{ secrets.CURSE_API_KEY }} | ||
|
@@ -120,6 +116,9 @@ jobs: | |
|
||
- name: Create Discord Embed | ||
run: ./gradlew injectDiscordEmbed | ||
env: | ||
FORGE_RELEASE_URL: ${{ steps.forge_release.outputs.modrinth-version }} | ||
FABRIC_RELEASE_URL: ${{ steps.fabric_release.outputs.modrinth-version }} | ||
|
||
- name: Send Discord Webhook | ||
uses: tsickert/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Fixed version numbers being incorrect. | ||
1.20.2 Update |
2 changes: 1 addition & 1 deletion
2
common/src/main/resources/resourcepacks/highlight_extended/pack.mcmeta
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"pack": { | ||
"pack_format": 15, | ||
"pack_format": 18, | ||
"description": "Gives 2+ tall or wide blocks a box that covers the whole block." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
org.gradle.jvmargs=-Xmx2G | ||
|
||
enabledPlatforms=fabric,forge | ||
enabledPlatforms=fabric,neoforge | ||
|
||
group=com.teamresourceful | ||
|
||
minecraftVersion=1.20 | ||
minecraftVersion=1.20.2 | ||
|
||
resourcefulLibVersion=2.0.7 | ||
resourcefulLibVersion=2.2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
architectury { | ||
neoForge() | ||
} | ||
|
||
dependencies { | ||
val neoforgeVersion: String by project | ||
neoForge(group = "net.neoforged", name = "neoforge", version = neoforgeVersion) | ||
} | ||
|
||
tasks.processResources { | ||
inputs.property("version", version) | ||
|
||
filesMatching("META-INF/mods.toml") { | ||
expand("version" to version) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
loom.platform=neoforge | ||
|
||
neoforgeVersion=20.2.56-beta |
24 changes: 12 additions & 12 deletions
24
forge/src/main/resources/META-INF/mods.toml → ...rge/src/main/resources/META-INF/mods.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"pack": { | ||
"description": "highlight resources", | ||
"pack_format": 18 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,4 @@ plugins { | |
|
||
include("common") | ||
include("fabric") | ||
include("forge") | ||
include("neoforge") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters