You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,10 +83,9 @@ View the coverage report locally by opening `coverage/index.html` in your browse
83
83
84
84
Only maintainers can make releases. Releases to [npm](https://www.npmjs.com) are automated using GitHub actions. To make a release, perform the following steps:
85
85
86
-
1. Update the version using Yarn, e.g. `yarn version patch`. This will create a new Git commit and tag.
87
-
2. Push the tag to GitHub.
88
-
```sh
89
-
git push origin main --tags
90
-
```
91
-
3. If the tests pass, GitHub actions will now publish the new version to npm.
92
-
4. When successful add [release notes](https://github.com/transloadit/node-sdk/releases).
86
+
1. Update the version using Yarn, e.g. `yarn version patch`. This will update the version in the `package.json` file.
87
+
2. Commit the changes to the `package.json` file.
88
+
3. Create a new Git tag, e.g. `git tag v4.0.0-6`.
89
+
4. Push the tag to GitHub: `git push origin main --tags`
90
+
5. If the tests pass, GitHub actions will now publish the new version to npm.
91
+
6. When successful add [release notes](https://github.com/transloadit/node-sdk/releases).
0 commit comments