From 138e7df3d629f4d765e25bc8e19bc8aa4be5e892 Mon Sep 17 00:00:00 2001 From: Adrian Smijulj Date: Sun, 12 Jun 2022 19:15:00 +0200 Subject: [PATCH] docs: update release steps --- CONTRIBUTING.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 35b1488..44f9c04 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,11 @@ -Commit all of the changes you have locally, then use the following commands to create a tag and push everything: +## Releasing a New Version + +First, build all the code via `yarn build`. + +Secondly, commit all of the changes you have locally (even the changes in `dist` folder) and then use the following commands to create a tag and push / release everything: ``` git tag -a -m "Release v1.0.19" v1.0.19 git push --follow-tags ``` +