Skip to content
Merged
3 changes: 3 additions & 0 deletions cmd/wfctl/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ func runPlugin(args []string) error {
return runPluginValidate(args[1:])
case "validate-contract":
return runPluginValidateContract(args[1:])
case "registry-sync":
return runPluginRegistrySync(args[1:])
case "conformance":
return runPluginConformance(args[1:])
case "info":
Expand Down Expand Up @@ -66,6 +68,7 @@ Subcommands:
remove Uninstall a plugin (also removes from manifest + lockfile)
validate Validate a plugin manifest from the registry or a local file
validate-contract Validate a plugin source directory against the release contract (workflow#758)
registry-sync Sync registry manifest versions/capabilities from upstream release tags; subcommands: core, readme (workflow#762)
conformance Run executable plugin/host conformance checks
info Show details about an installed plugin
deps List dependencies for a plugin
Expand Down
Loading
Loading