build-tools/README.md
Sahil Ahuja 493139b012 Changes
2025-01-29 18:28:37 +05:30

16 lines
264 B
Markdown

# deploy-tools
Github Action Workflows that can be reused, built by GMetri
## Creating new releases
```bash
git add -A;
git commit -m "<commit msg>"
#Minor version
git tag -a -m "<tag msg>" v1.0.1
git push --follow-tags
#Moving major version
git tag -fa v1
```