Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 219 Bytes

INTERNAL.md

File metadata and controls

14 lines (11 loc) · 219 Bytes

Deploy a new version

reason="New version"
git add -A .
git commit -m "${reason}"

# Delete tag if needed
# git tag -d v1
# git push --delete origin v1

git tag -a v1 -m "${reason}"
git push --follow-tags