2022-05-20 13:14:49 -04:00
# scratch-semantic-release-config
2019-06-11 15:01:53 -04:00
2022-05-20 13:14:49 -04:00
[![npm version ](https://img.shields.io/npm/v/scratch-semantic-release-config )](https://www.npmjs.com/package/scratch-semantic-release-config)
2019-06-11 15:01:53 -04:00
2022-05-20 13:14:49 -04:00
Remixed from: [@jedmao/semantic-release-npm-github-config ](https://github.com/jedmao/semantic-release-npm-github-config )
2019-06-11 15:01:53 -04:00
## Plugins
2022-05-20 13:14:49 -04:00
This [shareable configuration](
2024-02-23 16:37:20 -05:00
https://github.com/scratchfoundation/scratch-semantic-release-config/blob/main/.releaserc.json) uses the following plugins:
2019-06-11 15:01:53 -04:00
- [`@semantic-release/commit-analyzer` ](https://github.com/semantic-release/commit-analyzer )
- [`@semantic-release/release-notes-generator` ](https://github.com/semantic-release/release-notes-generator )
- [`@semantic-release/npm` ](https://github.com/semantic-release/npm )
- [`@semantic-release/github` ](https://github.com/semantic-release/github )
- [`@semantic-release/git` ](https://github.com/semantic-release/git )
2019-07-31 01:29:39 -04:00
## Summary
2022-05-20 13:14:49 -04:00
- Provides an informative [git ](https://github.com/semantic-release/git ) commit message for the release commit that
does not trigger continuous integration and conforms to the [conventional commits specification](
https://www.conventionalcommits.org/) (e.g., "chore(release): 1.2.3 [skip ci]\n\nnotes").
2019-07-31 01:29:39 -04:00
- Creates a tarball that gets uploaded with each [GitHub release ](https://github.com/semantic-release/github ).
- Publishes the same tarball to [npm ](https://github.com/semantic-release/npm ).
- Commits the version change in `package.json` .
- Creates or updates a [changelog ](https://github.com/semantic-release/changelog ) file.
2019-06-11 15:01:53 -04:00
## Install
```bash
2022-05-20 13:14:49 -04:00
npm install --save-dev semantic-release scratch-semantic-release-config
2019-06-11 15:01:53 -04:00
```
## Usage
The shareable config can be configured in the [**semantic-release** configuration file ](https://github.com/semantic-release/semantic-release/blob/master/docs/usage/configuration.md#configuration ):
```json
{
2022-05-20 13:14:49 -04:00
"extends": "scratch-semantic-release-config",
"branch": "main"
2019-06-11 15:01:53 -04:00
}
```
## Configuration
2019-06-26 13:06:30 -04:00
Ensure that your CI configuration has the following **_secret_** environment variables set:
2022-05-20 13:14:49 -04:00
- [`GH_TOKEN` ](https://github.com/settings/tokens ) with [`public_repo`](
https://developer.github.com/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/#available-scopes) access.
2019-06-26 12:02:29 -04:00
- [`NPM_TOKEN` ](https://docs.npmjs.com/cli/token )
2019-09-25 17:03:30 -04:00
- [`NODE_AUTH_TOKEN` ](https://docs.npmjs.com/cli/token )
2019-06-26 12:02:29 -04:00
2019-06-11 15:01:53 -04:00
See each [plugin ](#plugins ) documentation for required installation and configuration steps.
2019-09-25 17:03:30 -04:00
### GitHub workflows
2022-05-20 13:14:49 -04:00
If you're [configuring a GitHub workflow ](https://help.github.com/en/articles/configuring-a-workflow ) you might want
to do a test build matrix first and then publish only if those tests succeed across all environments. The following
will do just that, immediately after something is merged into `main` .
2019-09-25 17:03:30 -04:00
```yml
name: Node CI
on:
push:
branches:
2022-05-20 13:14:49 -04:00
- main
2019-09-25 17:03:30 -04:00
jobs:
test:
name: Test on node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [8, 10, 12]
os:
- ubuntu-latest
- windows-latest
- macOS-latest
steps:
- name: Preserve line endings
run: git config --global core.autocrlf false
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install & test/cover
run: npm ci & & npm run cover
env:
CI: true
release:
name: npm publish / GitHub release
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: Install
env:
CI: true
run: npm ci
- name: Build
if: success()
run: npm run build
- name: Semantic Release
if: success()
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
```