Skip to content

Commit e1a6ccf

Browse files
benjieyaacovCR
authored andcommitted
Update release instructions in CONTRIBUTING.md (#4105)
1 parent 61be526 commit e1a6ccf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/CONTRIBUTING.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,18 +93,22 @@ then use `npm version patch|minor|major` in order to increment the version in
9393
package.json and tag and commit a release. Then `git push && git push --tags`
9494
to sync this change with source control. Then `npm publish npmDist` to actually
9595
publish the release to NPM.
96-
Once published, add [release notes](https://github.com/graphql/graphql-js/tags).
96+
Once published, add [release notes](https://github.com/graphql/graphql-js/releases).
9797
Use [semver](https://semver.org/) to determine which version part to increment.
9898

9999
Example for a patch release:
100100

101101
```sh
102+
npm ci
102103
npm test
103104
npm version patch --ignore-scripts=false
104105
git push --follow-tags
105106
cd npmDist && npm publish
107+
npm run changelog
106108
```
107109

110+
Then upload the changelog to [https://github.com/graphql/graphql-js/releases](https://github.com/graphql/graphql-js/releases).
111+
108112
## License
109113

110114
By contributing to graphql-js, you agree that your contributions will be

0 commit comments

Comments
 (0)