From 7c70e11719d7dbe83e672288410c9be9bea6d280 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Wed, 8 Apr 2020 12:56:17 +0200 Subject: [PATCH] build: fix script --- scripts/release.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/release.sh b/scripts/release.sh index 34cb3b25..77d34436 100644 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -25,12 +25,11 @@ then # commit and tag git add CHANGELOG.md package.json - git commit -m "realese: v$VERSION" + git commit -m "release: v$VERSION" git tag "v$VERSION" # commit - # TODO: make sure this works the next time - yarn publish --tag next --new-version $VERSION --no-commit-hooks --no-git-tag-version + yarn publish --tag next --new-version "$VERSION" --no-commit-hooks --no-git-tag-version # publish git push origin refs/tags/v$VERSION -- 2.47.2