Skip to content

Commit

Permalink
Fix publishMods dryRun
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Aug 9, 2023
1 parent 0ba8e9c commit a336222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ publishMods {
type = project.prerelease == "true" ? BETA : STABLE
displayName = "[${project.minecraft_version}] Fabric API $project.version"
modLoaders.add("fabric")
dryRun = providers.environmentVariable("GITHUB_TOKEN").getOrNull() == null
dryRun = providers.environmentVariable("CURSEFORGE_API_KEY").getOrNull() == null

curseforge {
accessToken = providers.environmentVariable("CURSEFORGE_API_KEY")
Expand Down

0 comments on commit a336222

Please sign in to comment.