Skip to content

Commit 5ed86f5

Browse files
committed
mc1.19.3
1 parent fc73b60 commit 5ed86f5

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
lines changed

.github/actions/release-verification/scripts/project_verification.main.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ val gp: Map<String, String> = wrkDir.resolve("gradle.properties")
3333
.collect(Collectors.toMap({ it[0].trim() }, { it[1].trim() }))
3434

3535
fun assertGradleProperties(name: String, orName: String) {
36-
if (gp[name] == null)
36+
if (gp[name] == null && gp[orName] == null)
3737
throw Exception("Required value does not exist in gradle.properties/gradle.propertiesに必要な値が存在しません: $name,$orName")
3838
}
3939

.github/actions/update-changelog-versioncheck/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ runs:
4747
4848
if [ "$DEFAULT_BRANCH" != "$TARGET_BRANCH" ]; then
4949
echo 'Checkout Default Branch'
50+
git stash
5051
git checkout $DEFAULT_BRANCH
5152
fi
5253

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Please write according to [Keep a Changelog](https://keepachangelog.com/en/1.0.0
1616

1717
### Removed
1818

19-
- Separated Fabric's built-in OBJ loader([Special Model Loader](https://github.com/TeamFelnull/SpecialModelLoader))
19+
- Separated Fabric's built-in OBJ loader ([Special Model Loader](https://github.com/TeamFelnull/SpecialModelLoader))
2020

2121
### Fixed
2222

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ architectury {
1111
}
1212

1313
changelog {
14-
repositoryUrl = "https://github.com/TeamFelnull/OtyacraftEngine"
14+
repositoryUrl = rootProject.repository_url
1515
introduction = """
1616
Changelog to track updates for this mod.
1717
Add your changes to Unreleased if you want to commit.

fabric/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ curseforge {
137137
project {
138138
id = "${rootProject.curesforge_id}"
139139

140-
changelog = '';
140+
changelogType = 'markdown'
141+
changelog = file('../LATEST_CHANGELOG.md')
141142

142143
releaseType = "${rootProject.release_type}"
143144
addGameVersion "${rootProject.minecraft_version}"
@@ -187,5 +188,6 @@ if (System.getenv('modrinthapikey') != null && "${modrinth_id}" != '') {
187188
required.project("9s6osm5g")//Cloth Config API
188189
required.project("lhGA9TYQ")//Architectury API
189190
}
191+
changelog = file('../LATEST_CHANGELOG.md').text
190192
}
191193
}

forge/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ curseforge {
138138
project {
139139
id = "${rootProject.curesforge_id}"
140140

141-
changelog = '';
141+
changelogType = 'markdown'
142+
changelog = file('../LATEST_CHANGELOG.md')
142143

143144
releaseType = "${rootProject.release_type}"
144145
addGameVersion "${rootProject.minecraft_version}"
@@ -179,5 +180,6 @@ if (System.getenv('modrinthapikey') != null && "${modrinth_id}" != '') {
179180
required.project("9s6osm5g")//Cloth Config API
180181
required.project("lhGA9TYQ")//Architectury API
181182
}
183+
changelog = file('../LATEST_CHANGELOG.md').text
182184
}
183185
}

gradle.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@ modrinth_id=iu3upNjC
2020
release_type=alpha
2121
maven_put_url=https://maven.felnull.dev/
2222
maven_group=dev.felnull
23-
maven_put_pass=
23+
maven_put_pass=
24+
#Other
25+
repository_url=https://github.com/TeamFelnull/OtyacraftEngine

0 commit comments

Comments
 (0)