UNPKG

@lukaswestholt/semantic-release-skopeo

Version:

This is a plugin for semantic-release that copies OCI images to a custom registry using daemonless open-source tool skopeo.

15 lines (12 loc) 366 B
/** * No-op for the prepare stage. * @param {Object} _pluginConfig - The plugin configuration. * @param {Object} context - The semantic-release context. */ async function prepare(_pluginConfig, context) { const { logger } = context; logger.info( "Prepare stage unused for this plugin. Advancing to publish stage.", ); } export { prepare };