Skip to content

Commit

Permalink
Disables configuration cache for the publish task.
Browse files Browse the repository at this point in the history
  • Loading branch information
JayShortway committed Jun 26, 2024
1 parent cdfefca commit f8d3e79
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -205,5 +205,8 @@ def publish
ENV["ORG_GRADLE_PROJECT_mavenCentralPassword"] = ENV["SONATYPE_NEXUS_TOKEN_PASSWORD"]
ENV["ORG_GRADLE_PROJECT_signingInMemoryKey"] = ENV["SIGNING_GPG_IN_MEMORY"]
ENV["ORG_GRADLE_PROJECT_signingInMemoryKeyPassword"] = ENV["GPG_SIGNING_KEY_PW_NEW"]
gradle(task: "publishAllPublicationsToMavenCentralRepository")
gradle(
task: "publishAllPublicationsToMavenCentralRepository",
flags: "--no-configuration-cache"
)
end

0 comments on commit f8d3e79

Please sign in to comment.