This repository serves as a template for creating a Semantic Release plugin. It provides a basic structure and example code to help you get started with building your own plugin for Semantic Release.
To install the plugin, use npm or yarn:
npm install semantic-release-plugin-template
# or
yarn add semantic-release-plugin-template
To use the plugin in your Semantic Release configuration, add it to the plugins array in your .releaserc file:
{
"plugins": ["semantic-release-plugin-template"]
}
To develop the plugin, clone this repository and install the dependencies:
git clone https://github.com/TymonMarek/semantic-release-plugin-template.git
cd semantic-release-plugin-template
npm install
You can run the tests using:
npm test
Contributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.
This project is licensed under the MIT License. See the LICENSE file for details.