Skip to content

Commit

Permalink
Merge pull request #57 from cisagov/improvement/add_tag_script
Browse files Browse the repository at this point in the history
Add the tag.sh Script
  • Loading branch information
mcdonnnj authored Jun 3, 2021
2 parents d580ccb + a42f980 commit a42ebe6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tag.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env bash

set -o nounset
set -o errexit
set -o pipefail

version=$(./bump_version.sh show)

git tag "v$version" && git push --tags

0 comments on commit a42ebe6

Please sign in to comment.