1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00
pywb/update-tag.sh

17 lines
178 B
Bash
Raw Normal View History

#!/bin/bash
VERSION=$(python ./pywb/version.py)
TAG=v-$VERSION
echo "Committing Tag $TAG"
if [ "$1" != "commit" ]; then
exit 0
fi
# Tag
git tag $TAG
git push origin $TAG