mirror of
https://gitea.com/actions/setup-maven.git
synced 2025-11-09 02:56:20 +08:00
10 lines
229 B
JavaScript
10 lines
229 B
JavaScript
module.exports = registerPlugin;
|
|
|
|
const factory = require("./factory");
|
|
|
|
function registerPlugin(plugins, pluginFunction) {
|
|
return factory(
|
|
plugins.includes(pluginFunction) ? plugins : plugins.concat(pluginFunction)
|
|
);
|
|
}
|