Merge pull request #7475 from Tammo0987/fix/usage-of-publisher-interface

Use the publisher interface for publishing as default
This commit is contained in:
eugene yokota 2024-01-21 00:41:18 +05:30 committed by GitHub
commit ed84b9f7e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -3665,7 +3665,8 @@ object Classpaths {
val conf = config.value
val log = streams.value.log
val module = ivyModule.value
IvyActions.publish(module, conf, log)
val publisherInterface = publisher.value
publisherInterface.publish(module, conf, log)
}
}
.tag(Tags.Publish, Tags.Network)