From afa692c9e0db235d0e54975281fa89f831109077 Mon Sep 17 00:00:00 2001 From: Enrico Sacchetti Date: Tue, 17 Jan 2023 21:12:38 -0500 Subject: [PATCH] docs: update release guide --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 42c1ff2a..e4164126 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -183,9 +183,9 @@ git commit -m "v$(jq -r '.version' package.json)" # 3. Create a tag based on the current version, either manually or with `jq`: git tag "v$(jq -r '.version' package.json)" -# 4. Push files, then publish -git push -npm publish +# 4. Push branch and tag, then publish +git push master [tag] +yarn publish # 5. Generate release notes on GitHub, and comment on issues and pull requests ```