Skip to content

Commit

Permalink
Remove suffix from changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
Adubbz committed Nov 20, 2023
1 parent b8b23f4 commit 0c32ea9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/gradle-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ modrinth {
loaders = ['fabric']

if (changelog_file.exists()) {
changelog = '```\n' + changelog_file.text + '\n```'
changelog = '```\n' + changelog_file.text
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion Forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ modrinth {
loaders = ['forge']

if (changelog_file.exists()) {
changelog = '```\n' + changelog_file.text + '\n```'
changelog = '```\n' + changelog_file.text
}
}

Expand Down
2 changes: 1 addition & 1 deletion NeoForge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ modrinth {
loaders = ['neoforge']

if (changelog_file.exists()) {
changelog = '```\n' + changelog_file.text + '\n```'
changelog = '```\n' + changelog_file.text
}
}

Expand Down

0 comments on commit 0c32ea9

Please sign in to comment.