7 lines
94 B
Bash
Executable File
7 lines
94 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERSION=$1
|
|
|
|
git tag -a v$VERSION -m "Version $VERSION"
|
|
git push origin v$VERSION
|