Nuxt/scripts/bump-rc.sh

13 lines
236 B
Bash
Raw Normal View History

2022-05-02 20:47:05 +00:00
#!/bin/bash
set -e
# Restore all git changes
git restore -s@ -SW -- packages examples
# Bump versions
2022-08-11 10:40:11 +00:00
yarn lerna version --preid rc --no-changelog --exact --no-git-tag-version --no-push -m "chore: release rc"
2022-08-12 13:35:33 +00:00
# Stage
git add --all