Skip to content

Commit

Permalink
Fix dependency submission
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebemish committed Apr 12, 2024
1 parent 14b96af commit a7848c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = 'dev.lukebemish'
version = '1.2.16'
version = '1.2.17'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public Step dependencySubmission(Action<DependencySubmission> action) {
step.getName().set("Submit Dependencies");
step.getEnv().putAll(getGradleEnv());
step.getUses().set(Constants.Versions.DEPENDENCY_SUBMISSION);
step.getWith().put("gradle-build-module", dependencySubmission.getBuildModules().get());
step.getWith().put("gradle-build-module", String.join("\n", dependencySubmission.getBuildModules().get()));
step.getWith().put("gradle-build-configuration", dependencySubmission.getBuildConfiguration().get());
step.getWith().put("sub-module-mode", dependencySubmission.getSubModuleMode().get());
step.getWith().put("include-build-environment", dependencySubmission.getIncludeBuildEnvironment().get());
Expand Down

0 comments on commit a7848c7

Please sign in to comment.