build-tools/README.md
Sahil Ahuja 7a2e073e16 New new
2025-02-13 12:50:24 +05:30

18 lines
283 B
Markdown

# build-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
git push --tags -f
```