Skip to content

Commit

Permalink
Add super basic versioning script
Browse files Browse the repository at this point in the history
  • Loading branch information
timdp committed Apr 25, 2018
1 parent f848c5a commit 662e1f8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scripts/version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

set -e

ver="v$1"

git commit --allow-empty -m "$ver"
git tag -a "$ver" -m "$ver"

0 comments on commit 662e1f8

Please sign in to comment.