mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
19 lines
340 B
Bash
Executable File
19 lines
340 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# Insist repository is clean
|
|
git diff-index --quiet HEAD
|
|
|
|
git checkout $1
|
|
git pull origin $1
|
|
|
|
version=$(grep "__version__ = " spacy/about.py)
|
|
version=${version/__version__ = }
|
|
version=${version/\'/}
|
|
version=${version/\'/}
|
|
version=${version/\"/}
|
|
version=${version/\"/}
|
|
git tag "v$version"
|
|
git push origin --tags
|