Skip to content

Commit

Permalink
fix publishing for the last time
Browse files Browse the repository at this point in the history
  • Loading branch information
lilypuree committed Jan 22, 2024
1 parent 5cefefc commit 93a49bd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
java: Java 17
name: >
[
${{ format( 'env.{0}', matrix.loader ) }} ${{ env.mc_version }}
${{ env.loader_name }} ${{ env.mc_version }}
]
v${{ env.mod_version }}
version: ${{ env.mod_version }}+${{ matrix.loader }}
Expand All @@ -80,7 +80,7 @@ jobs:
java: Java 17
name: >
[
${{ format( 'env.{0}', matrix.loader ) }} ${{ env.mc_version }}
${{ env.loader_name }} ${{ env.mc_version }}
]
v${{ env.mod_version }}
version: ${{ env.mod_version }}+${{ matrix.loader }}
Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'org.spongepowered.gradle.vanilla' version '0.2.1-SNAPSHOT'
}
base {
archivesName = "${mod_name}-common-${minecraft_version}"
archivesName = "${mod_name}-Common-${minecraft_version}"
}
minecraft {
version(minecraft_version)
Expand Down
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
id 'net.darkhax.curseforgegradle' version "1.+"
}
base {
archivesName = "${mod_name}-fabric-${minecraft_version}"
archivesName = "${mod_name}-Fabric-${minecraft_version}"
}
repositories {
maven { url "https://maven.shedaniel.me/" }
Expand Down
2 changes: 1 addition & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {

}
base {
archivesName = "${mod_name}-forge-${minecraft_version}"
archivesName = "${mod_name}-Forge-${minecraft_version}"
}
mixin {
add(sourceSets.main, "${mod_id}.refmap.json")
Expand Down

0 comments on commit 93a49bd

Please sign in to comment.