build-tools/README.md
2025-12-29 19:36:19 +05:30

18 lines
307 B
Markdown

# build-tools
Github Action Workflows that can be reused, built by GMetri
## Creating new releases
```bash
commit_msg=v1.1.17
git add -A;
git commit -m "$commit_msg"
#Minor version
git tag -a -m "$commit_msg" $commit_msg
git push --follow-tags
#Moving major version
git tag -fa v1
git push --tags -f
```