Skip to content

Commit

Permalink
Update RELEASE.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Aug 12, 2019
1 parent a8adb49 commit 8907a49
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions RELEASE.md
Expand Up @@ -30,12 +30,36 @@ When reviewing merged PR's the labels to be used are:

Once the prep work is completed, the actual release is straight forward:

* First ensure that you have `release-it` installed globally, generally done by
using one of the following commands:

```
# using https://volta.sh
volta install release-it
# using Yarn
yarn global add release-it
# using npm
npm install --global release-it
```

* Second, ensure that you have installed your projects dependencies:

```
# using yarn
yarn install
yarn release
# using npm
npm install
```

* And last (but not least 😁) do your release:

```
release-it
```

The `release` script leverages
[release-it](https://github.com/release-it/release-it/) to do the mechanical
[release-it](https://github.com/release-it/release-it/) manages the actual
release process. It will prompt you through the process of choosing the version
number, tagging, pushing the tag and commits, etc.

0 comments on commit 8907a49

Please sign in to comment.