Skip to content

Commit

Permalink
fix(release): push tags
Browse files Browse the repository at this point in the history
  • Loading branch information
sampie777 committed Dec 15, 2021
1 parent e1ffb11 commit f369b71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ echo "Release version: ${RELEASE_VERSION}"
git add package.json || exit 1
git commit -m "version release" || exit 1
git tag "v${RELEASE_VERSION}" || exit 1
git push -u origin master || exit 1
git push -u origin master --tags || exit 1

yarn bundle || exit 1
yarn build || exit 1
Expand All @@ -32,4 +32,4 @@ npm --no-git-tag-version version ${RELEASE_VERSION} || exit 1

git add package.json || exit 1
git commit -m "next development version" || exit 1
git push -u origin develop || exit 1
git push -u origin develop --tags || exit 1

0 comments on commit f369b71

Please sign in to comment.