Skip to content

Nx-Release-Publish Executor

Terminal window
nx nx-release-publish my-go-lib

or through the nx release command:

Terminal window
nx release --publish

The nx-release-publish executor does not have configurable options. It automatically publishes your Go module to the Go registry.

{
executor: '@naxodev/gonx:release-publish',
options: {
moduleRoot: projectRoot,
},
configurations: {
development: {
dryRun: true,
},
},
}
  • This executor is designed to work seamlessly with nx release
  • Publishes your Go module to the Go registry
  • Part of gonx’s integration with Nx’s version management system