Skip to content
This repository has been archived by the owner on May 22, 2018. It is now read-only.

Commit

Permalink
Add a quick script/release
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarnette committed Nov 29, 2012
1 parent 9157ac7 commit f8a6d72
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions script/release
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#!/bin/sh
# Tag and push a release.

set -e

# Make sure we're in the project root.

cd $(dirname "$0")/..

# Build a new gem archive.

rm -rf cardboard-*.gem
gem build -q cardboard.gemspec

# Make sure we're on the master branch.

(git branch | grep '* master') || {
echo "Only release from the master branch."
exit 1
}

# Figure out what version we're releasing.

tag=v`ls cardboard-*.gem | sed 's/^cardboard-\(.*\)\.gem$/\1/'`

# Make sure we haven't released this version before.

git fetch -t origin

(git tag -l | grep "$tag") && {
echo "Whoops, there's already a '${tag}' tag."
exit 1
}

# Tag it and bag it.

gem push cardboard-*.gem && git tag "$tag" &&
git push origin master && git push origin "$tag"

0 comments on commit f8a6d72

Please sign in to comment.