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: README.md
+83Lines changed: 83 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,89 @@ The Graph CLI can be used with a local or self-hosted [Graph Node](https://githu
53
53
54
54
If you are ready to dive into the details of building a subgraph from scratch, there is a [detailed walkthrough](https://thegraph.com/docs/define-a-subgraph) for that as well, along with API documentation for the [AssemblyScript API](https://thegraph.com/docs/assemblyscript-api).
55
55
56
+
## Release process
57
+
58
+
The steps to create a new version of the `graph-cli` are:
59
+
60
+
1. Decide which version number you'll be rolling out. You can check the differences between the current `master` branch and the latest release.
61
+
2. Create a PR with the commit generated by `npm version <VERSION> [<PREID>]`.
62
+
3. Once that's approved and merged to `master`, you can publish it to `npm` and push the git tags as well.
63
+
4. Last but not least, create a Github Release refering to the pushed git tag, linking to the PRs involved.
0 commit comments