Skip to content

Files

Latest commit

Jan 15, 2025
7d48a3a · Jan 15, 2025

History

History
14 lines (11 loc) · 219 Bytes

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