-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP getting 1.20.4 fabric to build on the new system
- Loading branch information
Showing
65 changed files
with
1,185 additions
and
846 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
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 |
---|---|---|
|
@@ -15,37 +15,26 @@ jobs: | |
- name: make gradle wrapper executable | ||
run: chmod +x ./gradlecw | ||
- name: build | ||
run: ./gradlecw build | ||
run: ./gradlecw build -Pbuild.release=true | ||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
FPFabric/build/libs/* | ||
FPForge/build/libs/* | ||
- name: Publish-Forge-Curseforge | ||
files: 'versions/**/build/libs/!(*-@(dev|sources|javadoc|all)).jar' | ||
- name: Publish-1.20.4-fabric-Curseforge | ||
uses: Kir-Antipov/[email protected] | ||
with: | ||
curseforge-id: 333287 | ||
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }} | ||
loaders: forge | ||
name: ${{github.ref_name}} - Forge | ||
version-type: beta | ||
files: '*Forge/build/libs/!(*-@(dev|sources|javadoc|all)).jar' | ||
- name: Publish-Forge-Modrinth | ||
uses: Kir-Antipov/[email protected] | ||
with: | ||
modrinth-id: H5XMjpHi | ||
modrinth-token: ${{ secrets.MODRINTH_TOKEN }} | ||
loaders: forge | ||
name: ${{github.ref_name}} - Forge | ||
files: '*Forge/build/libs/!(*-@(dev|sources|javadoc|all)).jar' | ||
- name: Publish-Fabric | ||
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }} | ||
loaders: fabric | ||
name: ${{github.ref_name}}-1.20.4 - Fabric | ||
files: 'versions/1.20.4-fabric/build/libs/!(*-@(dev|sources|javadoc|all)).jar' | ||
game-versions: 1.20.4 | ||
- name: Publish-1.20.4-fabric-Modrinth | ||
uses: Kir-Antipov/[email protected] | ||
with: | ||
modrinth-id: H5XMjpHi | ||
modrinth-token: ${{ secrets.MODRINTH_TOKEN }} | ||
curseforge-id: 333287 | ||
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }} | ||
loaders: fabric | ||
name: ${{github.ref_name}} - Fabric | ||
files: '*Fabric/build/libs/!(*-@(dev|sources|javadoc|all)).jar' | ||
name: ${{github.ref_name}}-1.20.4 - Fabric | ||
files: 'versions/1.20.4-fabric/build/libs/!(*-@(dev|sources|javadoc|all)).jar' | ||
game-versions: 1.20.4 |
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
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,33 +1,33 @@ | ||
{ | ||
"schemaVersion": 1, | ||
"id": "firstperson", | ||
"version": "2.2.4", | ||
"name": "FirstpersonModel", | ||
"description": "Enables the third person Model in firstperson", | ||
"authors": [ | ||
"tr7zw" | ||
], | ||
"contact": { | ||
"homepage": "https://www.curseforge.com/minecraft/mc-mods/first-person-model", | ||
"sources": "https://github.com/tr7zw/FirstPersonModel-Fabric", | ||
"issues": "https://github.com/tr7zw/FirstPersonModel-Fabric/issues" | ||
}, | ||
"license": "MIT", | ||
"icon": "assets/firstperson/icon.png", | ||
"environment": "client", | ||
"entrypoints": { | ||
"main": [ | ||
"dev.tr7zw.firstperson.fabric.FirstPersonModelMod" | ||
"schemaVersion": 1, | ||
"id": "firstperson", | ||
"version": "2.2.4", | ||
"name": "FirstpersonModel", | ||
"description": "Enables the third person Model in firstperson", | ||
"authors": [ | ||
"tr7zw" | ||
], | ||
"modmenu": [ | ||
"dev.tr7zw.firstperson.fabric.config.FirstPersonModMenu" | ||
] | ||
}, | ||
"mixins": [ | ||
"firstperson.mixins.json" | ||
], | ||
"depends": { | ||
"minecraft": ">=1.20.2", | ||
"fabric-api": "*" | ||
} | ||
} | ||
"contact": { | ||
"homepage": "https://www.curseforge.com/minecraft/mc-mods/first-person-model", | ||
"sources": "https://github.com/tr7zw/FirstPersonModel-Fabric", | ||
"issues": "https://github.com/tr7zw/FirstPersonModel-Fabric/issues" | ||
}, | ||
"license": "MIT", | ||
"icon": "assets/firstperson/icon.png", | ||
"environment": "client", | ||
"entrypoints": { | ||
"main": [ | ||
"dev.tr7zw.firstperson.fabric.FirstPersonModelMod" | ||
], | ||
"modmenu": [ | ||
"dev.tr7zw.firstperson.fabric.config.FirstPersonModMenu" | ||
] | ||
}, | ||
"mixins": [ | ||
"firstperson.mixins.json" | ||
], | ||
"depends": { | ||
"minecraft": ">=1.20.2", | ||
"fabric-api": "*" | ||
} | ||
} |
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
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
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
Oops, something went wrong.