14 lines
190 B
Bash
Executable File
14 lines
190 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
V=$(cat VERSION)
|
|
D="$(pwd)/build"
|
|
|
|
git commit -a
|
|
git tag $V
|
|
git push --tags
|
|
git tag -d $V
|
|
git push --all
|
|
tea r c --repo cmake/myx -t $V --tag $V -a "$D"/myx-cmake*${V}*
|