Skip to content

Commit

Permalink
add curseforge publishing to github actions and remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Zekiu committed Dec 26, 2023
1 parent f6b18a4 commit 9cda507
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ jobs:
java-version: '17'
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Publish Modrinth Jar
- name: Publish Jar to Modrinth
env:
MODRINTH_TOKEN: ${{secrets.MODRINTH_TOKEN}}
run: ./gradlew modrinth
run: ./gradlew modrinth
- name: Publish Jar to CurseForge
env:
CURSEFORGE_API_KEY: ${{secrets.CURSEFORGE_API_KEY}}
run: ./gradlew curseforge
4 changes: 0 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,5 @@ curseforge {
mainArtifact(remapJar) {
it.displayName = "Wlodzimiers Blocks " + project.mod_version + " - " + project.minecraft_version
}

options {
debug = true
}
}
}

0 comments on commit 9cda507

Please sign in to comment.