fix: tag fetching

This commit is contained in:
peaceiris 2020-02-19 02:00:06 +09:00
parent 6fe5c9e762
commit 6595e02d68

View File

@ -41,9 +41,9 @@ if [ "${CURRENT_BRANCH}" != "master" ]; then
git pull origin "${CURRENT_BRANCH}"
else
git pull origin master
git tag -d v3 || true
git pull origin --tags
fi
git pull origin --tags
git tag -d v3 || true
npm ci