Skip to content

Commit

Permalink
πŸ“ Add release instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Viicos committed Oct 30, 2023
1 parent ac53273 commit 980c360
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,18 @@ import {
PrefillConfig,
} from '@open-formulieren/types';
```

## Release flow

We don't let `npm` apply the git tags when releasing a new version, instead follow this process:

```bash
npm version --no-git-tag-version minor
git commit -am ":bookmark: Bump to version <newVersion>"
git tag "<newVersion>"
git push origin main --tags
```

If you have PGP keys set up, you can use them for the git tag operation.

The CI pipeline will then publish the new version to npmjs.

0 comments on commit 980c360

Please sign in to comment.