mirror of
https://github.com/scratchfoundation/scratch-semantic-release-config.git
synced 2024-11-23 07:58:23 -05:00
2.6 KiB
2.6 KiB
@jedmao/semantic-release-npm-github-config
semantic-release shareable config to publish npm packages with GitHub.
Plugins
This shareable configuration uses the following plugins:
@semantic-release/commit-analyzer
@semantic-release/release-notes-generator
@semantic-release/npm
@semantic-release/github
@semantic-release/git
Summary
- Provides an informative git commit message for the release commit that does not trigger continuous integration and conforms to the conventional commits specification (e.g., "chore(release): 1.2.3 [skip ci]\n\nnotes").
- Creates a tarball that gets uploaded with each GitHub release.
- Publishes the same tarball to npm.
- Commits the version change in
package.json
. - Creates or updates a changelog file.
Install
$ npm install --save-dev semantic-release @jedmao/semantic-release-npm-github-config
Usage
The shareable config can be configured in the semantic-release configuration file:
{
"extends": "@jedmao/semantic-release-npm-github-config",
"branch": "master"
}
Configuration
Ensure that your CI configuration has the following secret environment variables set:
GH_TOKEN
withpublic_repo
access.NPM_TOKEN
See each plugin documentation for required installation and configuration steps.