Skip to content

Commit

Permalink
fix up release script
Browse files Browse the repository at this point in the history
  • Loading branch information
hgschmie committed Jan 15, 2022
1 parent 9bf438f commit a40e32a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions do_release.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
#! /bin/bash

if [ $# -lt 1 ]; then
echo "Usage: $0 <release tag>" 1>&2
exit 1
fi

VERSION=$1 ; shift

git tag ${VERSION}
changie batch ${VERSION}

RELEASE_NOTES=changes/$(changie latest).md

changie merge
Expand Down

0 comments on commit a40e32a

Please sign in to comment.