miniflux-legacy/scripts/make-tag.sh

7 lines
92 B
Bash
Raw Normal View History

2014-02-08 14:13:14 -05:00
#!/bin/sh
2013-07-22 18:07:58 -04:00
VERSION=$1
git tag -a v$VERSION -m "Version $VERSION"
git push origin v$VERSION