Skip to content

Commit

Permalink
Slight Improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
IntegerLimit committed Mar 7, 2024
1 parent f73d899 commit f17ac93
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -985,26 +985,27 @@ if (cfApiKey.isPresent() || deploymentDebug.toBoolean()) {
}
doLast {
// No File IDs in Debug Mode
if (!deploymentDebug.toBoolean()) {
def list = [];
//if (!deploymentDebug.toBoolean()) {
def list = []
for (def artifact : tasks.curseforge.getUploadArtifacts()) {
list.add(artifact)
for (def additionalArtifact : artifact.getAdditionalArtifacts()) {
list.add(additionalArtifact)
}
}
def summary = "# CurseForge Build Summary"
def summary = "# CurseForge Build Summary (Mod ${modName} | Project ID ${curseForgeProjectId})"
for (def artifact : list) {
def fileId = artifact.getCurseFileId()
def fileName = artifact.getArtifact().getSingleFile().name
println("Uploaded File ${fileName}, With File ID: ${fileId}")
summary.concat("\n - File: ${fileName} | File ID: ${fileId}")
summary = summary + "\n - File: ${fileName} | File ID: ${fileId}"
}
println(summary)
def stepSummary = providers.environmentVariable("GITHUB_STEP_SUMMARY")
if (stepSummary.isPresent()) {
file(stepSummary.get()).write(summary)
}
}
//}
}
}
tasks.curseforge.dependsOn(build)
Expand Down

0 comments on commit f17ac93

Please sign in to comment.