From 239cd6472119cf6b14d3d74fc95ad6680ef3887e Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Mon, 25 Oct 2021 21:54:36 +0200 Subject: [PATCH] docs: releasing steps clarify that we dont use aegir and publish entire root, not just `./dist` to save time the next person :^) --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index e4180e51..43d7fa34 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,17 @@ $ npm install -g ipfs-interop $ IPFS_GO_EXEC=/path IPFS_JS_EXEC=/path IPFS_JS_MODULE=/path IPFS_JS_HTTP_MODULE=/path ipfs-interop ``` +## Releasing a new version + +This repo does not use aegir for releases. +Use `npm` directly and publish entire root (CI in go-ipfs requires it). + +``` +npm version [major|minor|path] +npm publish +npm push origin && npm push origin v[N.N.N] +``` + ## Contribute Feel free to join in. All welcome. Open an [issue](https://github.com/ipfs/ipfs-interop/issues)!