generated from aarnphm/bazix
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Aaron <[email protected]>
- Loading branch information
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
if [ "$#" -eq 1 ]; then | ||
VERSION_STR=$1 | ||
else | ||
echo "Must provide release version string, e.g. ./script/release.sh 1.0.5" | ||
exit 1 | ||
fi | ||
|
||
SEMVER_REGEX="^[vV]?(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)(\\-[0-9A-Za-z-]+(\\.[0-9A-Za-z-]+)*)?(\\+[0-9A-Za-z-]+(\\.[0-9A-Za-z-]+)*)?$" | ||
|
||
if [[ "$VERSION_STR" =~ $SEMVER_REGEX ]]; then | ||
echo "Releasing whispercpp version v$VERSION_STR:" | ||
else | ||
echo "Warning: version $VERSION_STR must follow semantic versioning schema, ignore this for preview releases" | ||
fi | ||
|
||
GIT_ROOT=$(git rev-parse --show-toplevel) | ||
cd "$GIT_ROOT" || exit 1 | ||
|
||
if [ -d "$GIT_ROOT"/dist ]; then | ||
echo "Removing existing 'dist' and 'build' directory to get a clean build" | ||
rm -rf "$GIT_ROOT"/dist | ||
rm -rf "$GIT_ROOT"/build | ||
fi | ||
|
||
tag_name="v$VERSION_STR" | ||
|
||
if git rev-parse "$tag_name" > /dev/null 2>&1; then | ||
echo "git tag '$tag_name' exist, using existing tag." | ||
echo "To redo releasing and overwrite existing tag, delete tag with the following and re-run release.sh:" | ||
echo "git tag -d $tag_name && git push --delete origin $tag_name" | ||
git checkout "$tag_name" | ||
else | ||
echo "Creating git tag '$tag_name'" | ||
git tag -a "$tag_name" -m "Tag generated by tools/release, version: $VERSION_STR" | ||
git push origin "$tag_name" | ||
fi |