From 1d52b9e7fe1d81c3f5ef58d821564c03db52eac3 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..557ec060 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|patch] +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)!