Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
Finally ready for pre-release!
Browse files Browse the repository at this point in the history
  • Loading branch information
CrypticVerse committed Mar 28, 2024
1 parent 82ebfbb commit 293c48e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
uses: gradle/actions/setup-gradle@v3

- name: Build
run: ./gradlew build
run: ./gradlew build --stacktrace
env:
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }}
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ This version brings additions
- Our tests show there is 1 per ~3000 blocks, so it's a LUCKY find!
- Thin Logs and a thin birch forest
- Thin logs are strippable and waterloggable
- Maple forest is tweaked to spawn with oak trees
- Maple forest is tweaked to spawn with oak trees
- Reeds are found in swamps and mangrove swamps!
- They damage you, so be careful
- Acts like tall grass/sweet berries
15 changes: 8 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ modrinth {
token = System.getenv("MODRINTH_TOKEN")
projectId = "Qs2o8KiI"
versionNumber = "fabric-${mod_version}"
versionName = "Better Biomes Fabric ${mod_name}"
versionType = "beta"
versionName = "Better Biomes Fabric ${mod_name} Pre-Release 1"
versionType = "alpha"
uploadFile = remapJar
gameVersions = ["1.20.4"]
loaders = ["fabric", "quilt"]
Expand All @@ -184,8 +184,8 @@ task curseforge(type: TaskPublishCurseForge) {
apiToken = System.getenv("CURSEFORGE_TOKEN")

def mainFile = upload(938715, remapJar)
mainFile.releaseType = 'beta'
mainFile.displayName = "Better Biomes Fabric ${mod_name}"
mainFile.releaseType = 'alpha'
mainFile.displayName = "Better Biomes Fabric ${mod_name} Pre-Release 1"
mainFile.addGameVersion("1.20.4")
mainFile.addModLoader("Quilt")
mainFile.addJavaVersion("Java 17")
Expand All @@ -199,9 +199,10 @@ task curseforge(type: TaskPublishCurseForge) {
githubRelease {
owner = "CrypticVerse"
repo = "BetterBiomes"
tagName = "fabric-${mod_name}"
releaseName = "Better Biomes Fabric ${mod_name}"
targetCommitish = "2.x-1.20.4"
tagName = "fabric-${mod_version}"
releaseName = "Better Biomes Fabric ${mod_name} Pre-Release 1"
targetCommitish = "dev-features"
prerelease = true
draft = false
releaseAssets tasks.remapJar
body = project.file("CHANGELOG.md").text
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ terraform_wood_api_version=9.0.0
notebook_version=1.1.10+1.20.4

# Mod Properties
mod_version=2.1.5.2-1.20.4
mod_name=2.1.5.2
mod_version=2.2.0.0-1.20.4-alpha
mod_name=2.2.0.0
maven_group=net.crypticverse.betterbiomes
archives_base_name=betterbiomes-fabric

0 comments on commit 293c48e

Please sign in to comment.