Targets
Targets Workflow
from pyblish import api, util
class plugin(api.ContextPlugin):
targets = ["custom"]
def process(self, context):
self.log.info("Custom target publishing.")
api.register_plugin(plugin)
util.publish(targets=["custom"])Example
Last updated