Skip to content

Commit

Permalink
Add release script
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoduncan committed Jan 24, 2012
1 parent fe65c83 commit 76be5b7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Jekyll
permalink: /:categories/:title/
exclude:
exclude: [release.sh]
name: Pallet, DevOps for the JVM
pygments: true
domain: palletops.com
Expand Down
13 changes: 13 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
#
# Script to release to the web site

if [[ $# -lt 1 ]]; then
echo "usage: $(basename $0) version" >&2
exit 1
fi

version=$1

git flow release start $version \
&& git flow release finish $version

0 comments on commit 76be5b7

Please sign in to comment.