1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 03:25:03 +03:00

Disable signing for now, activate later in the vm

This commit is contained in:
Tae Won Ha 2020-06-19 10:18:53 +02:00
parent 5cafc54dd0
commit 2b7980dc09
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -8,10 +8,10 @@ readonly branch=${branch:?"Eg develop"}
readonly tag=${tag:?"v0.29.0-329"}
echo "### Committing version bump"
git commit -S -am "Bump version: ${tag}"
git commit -am "Bump version: ${tag}"
echo "### tagging VimR"
git tag -s -m "${tag}" "${tag}"
git tag -m "${tag}" "${tag}"
echo "### Pushing commit and tag to vimr repository"
git push origin HEAD:"${branch}"