Skip to content

Commit

Permalink
Bump Bootstrap-API & try some build-script fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
C0D3-M4513R committed Jan 16, 2024
1 parent f50b2f1 commit 31fcbf8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,19 @@ jobs:
unset ARR
}
getVer MC_VERSION
echo "Got MC_VERSION: $MC_VERSION"
getVer FORGE_VERSION
echo "Got FORGE_VERSION: $FORGE_VERSION"
getVer KETTING_VERSION
echo "Got KETTING_VERSION: $KETTING_VERSION"
tag=v$MC_VERSION-$FORGE_VERSION-$KETTING_VERSION
echo "Got tag $tag"
echo "tag=$tag" >> "$GITHUB_OUTPUT"
echo "Set tag as output"
git tag $tag
echo "Created local tag"
git push origin $tag
echo "Pushed to remote"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Github Release if on default branch
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ org.gradle.daemon=false
JAVA_VERSION=17
MC_VERSION=1.20.4
FORGE_VERSION=49.0.19
KETTING_VERSION=0.0.1
KETTING_VERSION=0.0.2
MC_NEXT_VERSION=1.21
MCP_VERSION=20231207.112700
MAPPING_CHANNEL=official
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencyResolutionManagement {
libs {
library('forgespi', 'net.minecraftforge:forgespi:7.1.3') // Needs modlauncher
library('bootstrap', 'net.minecraftforge:bootstrap:2.0.0') // Needs modlauncher
library('bootstrap-api', 'net.minecraftforge:bootstrap-api:2.0.0')
library('bootstrap-api', 'net.minecraftforge:bootstrap-api:2.0.3')
library('bootstrap-shim', 'net.minecraftforge:bootstrap-shim:2.0.1')
library('modlauncher', 'net.minecraftforge:modlauncher:10.1.2') // Needs securemodules
library('securemodules', 'net.minecraftforge:securemodules:2.2.9') // Needs unsafe
Expand Down

0 comments on commit 31fcbf8

Please sign in to comment.