Open
Description
There are some small issues with release script.
- It asks to change node version after checking release type. Should check first thing. Let's also attempt to change node version in the script itself (
nvm use
) so that it doesn't require action from user. - Add a field for docs autodeploy:
- For
large
- should be {branch:master
, confirm: false} - For
tiny
- should be {branch:develop
, confirm: true} - For
next
- should be {branch:develop
, confirm: true} - For
experimental
- should be {branch:experimental
, confirm: true}
- For
- For branch check ensure upstream branch matches, and not a local one.
Separately we need
-
update-docs
- should fast forwardmaster
to currentdevelop
or ask if force push is needed, then force push. -
update-experimental-docs
- should forceexperimental
branch on current commit, then force push without confirmation (git branch --force experimental
).
- For all of this please provide documentation in contribution page.