- @semantic-release/commit-analyzer
analyzeCommits
: Determine the type of release by analyzing commits with conventional-changelog
- @semantic-release/release-notes-generator
generateNotes
: Generate release notes for the commits added since the last release with conventional-changelog
- @semantic-release/github
verifyConditions
: Verify the presence and the validity of the GitHub authentication and release configurationpublish
: Publish a GitHub releasesuccess
: Add a comment to GitHub issues and pull requests resolved in the releasefail
: Open a GitHub issue when a release fails
- @semantic-release/npm
verifyConditions
: Verify the presence and the validity of the npm authentication and release configurationprepare
: Update the package.json version and create the npm package tarballpublish
: Publish the package on the npm registry
- @semantic-release/gitlab
verifyConditions
: Verify the presence and the validity of the GitLab authentication and release configurationpublish
: Publish a GitLab release
- @semantic-release/git
verifyConditions
: Verify the presence and the validity of the Git authentication and release configurationprepare
: Push a release commit and tag, including configurable files
- @semantic-release/changelog
verifyConditions
: Verify the presence and the validity of the configurationprepare
: Create or update the changelog file in the local project repository
- @semantic-release/exec
verifyConditions
: Execute a shell command to verify if the release should happenanalyzeCommits
: Execute a shell command to determine the type of releaseverifyRelease
: Execute a shell command to verifying a release that was determined before and is about to be publishedgenerateNotes
: Execute a shell command to generate the release noteprepare
: Execute a shell command to prepare the releasepublish
: Execute a shell command to publish the releasesuccess
: Execute a shell command to notify of a new releasefail
: Execute a shell command to notify of a failed release
- @semantic-release/apm
verifyConditions
: Verify the presence of theATOM_ACCESS_TOKEN
environment variable and theapm
CLIprepare
: Update thepackage.json
version withnpm version
publish
: Publish the Atom package
Open a Pull Request to add your plugin to the list.
- semantic-release-slack-bot
verifyConditions
: Verify that the environment variableSLACK_WEBHOOK
has been defined.success
: Publish a message about the success to a slack channel.fail
: Optionally publish a message about failure to a slack channel.
- semantic-release-docker
verifyConditions
: Verify that all needed configuration is present and login to the Docker registry.publish
: Tag the image specified byname
with the new version, push it to Docker Hub and update the latest tag
- semantic-release-gcr
verifyConditions
: Verify that all needed configuration is present and login to the Docker registrypublish
: Tag the image specified byname
with the new version, push it to Docker Hub and update the latest tag
- semantic-release-vsce
verifyConditions
: Verify the presence and the validity of the vsce authentication and release configurationprepare
: Create a.vsix
for distributionpublish
: Publish the package to the Visual Studio Code marketplace
- semantic-release-verify-deps
verifyConditions
: Check the dependencies format against a regexp before a release
- semantic-release-chrome
verifyConditions
: Verify the presence of the authentication (set via environment variables)prepare
: Write the correct version to themanifest.json
and creates a zip file of the whole dist folderpublish
: Uploads the generated zip file to the webstore, and publish the item
- semantic-release-firefox
verifyConditions
: Verify the presence of the authentication (set via environment variables)prepare
: Write the correct version to themanifest.json
, creates axpi
file of the dist folder and a zip of the sourcespublish
: Submit the generated archives to the webstore for review, and publish the item including release notes
- semantic-release-gerrit
generateNotes
: Generate release notes with Gerrit reviews URL
- semantic-release-expo
verifyConditions
: Verify Expo manifest(s) are readable and valid.prepare
: Update version, ios build number and android version code in the Expo manifest(s).
- maven-semantic-release
verifyConditions
: Verifies that thepom.xml
file and other files exist and are setup to allow releasesverifyRelease
: Checks and warns (does not error by default) if the version numbers found on maven central and within the Git project differ by quite a bitprepare
: Changes the version number in thepom.xml
(or allpom.xml
files in maven projects with multiplepom.xml
files) and optionally creates a commit with this version number and pushes it tomaster
publish
: Runsmvn deploy
to deploy to maven central and optionally will update to next snapshot version and merge changes to development branch
- semantic-release-ado
prepare
: Stores the version number as an Azure DevOps pipeline variable availabe to downstream steps on the job
- gradle-semantic-release
verifyConditions
: Verify that project has a Gradle wrapper script, andbuild.gradle
contains a task to publish artifacts.prepare
: Changes the version number in thegradle.properties
publish
: Triggers Gradle to publish artifacts.
- semantic-release-circleci-orb
verifyConditions
: Verify the presence of theCIRCLECI_API_TOKEN
environment variable,orbName
option, and thecircleci
CLI.publish
: Publish the CircleCI orb.
- semantic-release-github-pages
verifyConditions
: Verify the presence of the auth token set via environment variables.publish
: Pushes commit to the documentation branch.