From b3acbb06f4ea63bc605f03fd0a1c641b4fd8840f Mon Sep 17 00:00:00 2001 From: Alex Yang <himself65@outlook.com> Date: Tue, 6 Feb 2024 23:05:29 -0600 Subject: [PATCH] docs: update CONTRIBUTING.md (#516) --- CONTRIBUTING.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 568d125ef..2b4797aec 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -78,3 +78,15 @@ pnpm start That should start a webserver which will serve the docs on https://localhost:3000 Any changes you make should be reflected in the browser. If you need to regenerate the API docs and find that your TSDoc isn't getting the updates, feel free to remove apps/docs/api. It will automatically regenerate itself when you run pnpm start again. + +## Publishing + +To publish a new version of the library, run + +```shell +pnpm new-llamaindex +pnpm new-create-llama +pnpm release +git push # push to the main branch +git push --tags +``` -- GitLab