This is a lua module for archiving files and other utils
- TODO
Add a new tag and create latest tag if not exists
Inputs: MSG
TAG_VERSION=$(convco version -b)
git tag -a v$TAG_VERSION -m "$MSG"
git push origin v$TAG_VERSION
git tag -f latest -m "$MSG"
git push -f origin latest
Generate changelog
convco changelog > CHANGELOG.md
git add CHANGELOG.md
git commit -m "Update CHANGELOG.md"
Refresh dependencies
go mod tidy