-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#!/bin/sh | ||
# Tag and push a release. | ||
|
||
set -e | ||
|
||
# Make sure we're in the project root. | ||
|
||
cd $(dirname "$0")/.. | ||
|
||
# Make sure the darn thing works | ||
|
||
bundle update | ||
|
||
# Build a new gem archive. | ||
|
||
rm -rf jekyll-theme-time-machine-*.gem | ||
gem build -q jekyll-theme-time-machine.gemspec | ||
|
||
# Make sure we're on the master branch. | ||
|
||
(git branch | grep -q 'master') || { | ||
echo "Only release from the master branch." | ||
exit 1 | ||
} | ||
|
||
# Figure out what version we're releasing. | ||
|
||
tag=v`ls jekyll-theme-time-machine-*.gem | sed 's/^jekyll-theme-time-machine-\(.*\)\.gem$/\1/'` | ||
|
||
# Make sure we haven't released this version before. | ||
|
||
git fetch -t origin | ||
|
||
(git tag -l | grep -q "$tag") && { | ||
echo "Whoops, there's already a '${tag}' tag." | ||
exit 1 | ||
} | ||
|
||
# Tag it and bag it. | ||
|
||
gem push jekyll-theme-time-machine-*.gem && git tag "$tag" && | ||
git push origin master && git push origin "$tag" |