don't do any linting/checking of the release commits
Summary: We prevent any precommit checks so that we don't have to include a "Test Plan" etc. in the release commit message. Test Plan: - ./release.sh 0.6.0 0.7.0 Auditors: emily
This commit is contained in:
parent
0f7a1a06e9
commit
aa36c459ae
|
@ -41,7 +41,7 @@ sed -i "" -E 's|"version": "[^"]+",|"version": "'$VERSION'",|' bower.json
|
|||
|
||||
# Make the commit and tag, and push them.
|
||||
git add package.json bower.json
|
||||
git commit -m "v$VERSION"
|
||||
git commit -n -m "v$VERSION"
|
||||
git tag "v$VERSION"
|
||||
git push origin "v$VERSION"
|
||||
|
||||
|
@ -57,7 +57,7 @@ if [ ! -z "$NEXT_VERSION" ]; then
|
|||
sed -i "" -E 's|"version": "[^"]+",|"version": "'$NEXT_VERSION'-pre",|' bower.json
|
||||
|
||||
git add package.json bower.json
|
||||
git commit -m "Bump master to v$NEXT_VERSION-pre"
|
||||
git commit -n -m "Bump master to v$NEXT_VERSION-pre"
|
||||
git push origin master
|
||||
|
||||
# Go back to the tag which has build/katex.tar.gz and build/katex.zip
|
||||
|
|
Loading…
Reference in New Issue
Block a user