Sha256: 8c789d5dffab2e02430c03c83637fdd627ae7fc658915ad6bd05a289222baeb1

Contents?: true

Size: 708 Bytes

Versions: 2

Compression:

Stored size: 708 Bytes

Contents

#!/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 palat-*.gem
gem build -q palat.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 palat-*.gem | sed 's/^palat-\(.*\)\.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 palat-*.gem && git tag "$tag" &&
  git push origin master && git push origin "$tag"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
palat-0.1.1 script/release
palat-0.1.0 script/release