Skip to content

Commit

Permalink
Merge pull request #6 from StylianosGakis/stylianos/fix-publication-name
Browse files Browse the repository at this point in the history
Fix missing publicationName for publishAggregatedPublicationToCentralPortal
  • Loading branch information
martinbonnin authored Apr 4, 2024
2 parents dcc7e1f + e411188 commit d500d88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/nmcp/NmcpExtension.kt
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class NmcpExtension(private val project: Project) {
it.username.set(aggregation.username)
it.password.set(aggregation.password)
it.publicationType.set(aggregation.publicationType)
it.publicationName.set(aggregation.publicationName)
it.publicationName.set(aggregation.publicationName.orElse("${project.name}-${project.version}.zip"))
}
}

Expand Down

0 comments on commit d500d88

Please sign in to comment.