Skip to content

Commit 17959a7

Browse files
pditommasoclaude
andcommitted
Improve success message for plugin registry release
- Enhanced success message to show "released to Nextflow Registry" - Display full registry URI instead of just hostname for better clarity - Message now reads: "🎉 SUCCESS\! Plugin 'name' version X.Y.Z has been successfully released to Nextflow Registry [https://registry.example.com/]\!" 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent e710ed1 commit 17959a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/groovy/io/nextflow/gradle/registry/RegistryReleaseTask.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ class RegistryReleaseTask extends DefaultTask {
6161
client.release(project.name, version, project.file(zipFile))
6262

6363
// Celebrate successful plugin upload! 🎉
64-
project.logger.lifecycle("🎉 SUCCESS! Plugin '${project.name}' version ${version} has been successfully uploaded to ${registryUri.host}!")
64+
project.logger.lifecycle("🎉 SUCCESS! Plugin '${project.name}' version ${version} has been successfully released to Nextflow Registry [${registryUri}]!")
6565
}
6666
}

0 commit comments

Comments
 (0)