13 lines
208 B
Markdown
13 lines
208 B
Markdown
# deploy-tools
|
|
|
|
Github Action Workflows that can be reused, built by GMetri
|
|
|
|
## Creating new releases
|
|
|
|
```
|
|
git add -A;
|
|
git commit -m "<commit msg>"
|
|
git tag -a -m "<tag msg>" v1.0.1
|
|
git push --follow-tags
|
|
```
|