Skip to content

Commit

Permalink
forgot token
Browse files Browse the repository at this point in the history
  • Loading branch information
JT122406 committed Dec 3, 2023
1 parent dcb9028 commit 37e2e53
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ tasks {

create("publishCurseForge", TaskPublishCurseForge::class) {
dependsOn(remapJar)
apiToken = project.properties["curseforge_token"] as String
val mainFile = upload(860936, remapJar.get().archiveFile)
mainFile.releaseType = "release"
mainFile.gameVersions = mutableSetOf(minecraftVersion)
Expand Down
1 change: 1 addition & 0 deletions forge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ tasks {

create("publishCurseForge", TaskPublishCurseForge::class) {
dependsOn(remapJar)
apiToken = project.properties["curseforge_token"] as String
val mainFile = upload(860936, remapJar.get().archiveFile)
mainFile.releaseType = "release"
mainFile.gameVersions = mutableSetOf(minecraftVersion)
Expand Down
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ systemProp.org.gradle.internal.repository.max.tentative=10
# the initial time before retrying, in milliseconds (default 125)
systemProp.org.gradle.internal.repository.initial.backoff=500

modrinth_token="token"
modrinth_token="token"
curseforge_token="token"

0 comments on commit 37e2e53

Please sign in to comment.