Sha256: a7c2e6efb38b96cf546b03b276338dba96441ea25acd62568188d4fa1ae13ced

Contents?: true

Size: 825 Bytes

Versions: 197

Compression:

Stored size: 825 Bytes

Contents

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

Version data entries

197 entries across 116 versions & 3 rubygems

Version Path
PlayRockPaperScissorsGame-2.2.0 docs/script/release
PlayRockPaperScissorsGame-2.2.0 docs/_site/script/release
PlayRockPaperScissorsGame-2.1.9 docs/script/release
PlayRockPaperScissorsGame-2.1.9 docs/_site/script/release
PlayRockPaperScissorsGame-2.1.8 docs/script/release
PlayRockPaperScissorsGame-2.1.8 docs/_site/script/release
PlayRockPaperScissorsGame-2.1.7 docs/script/release
PlayRockPaperScissorsGame-2.1.7 docs/_site/script/release
PlayRockPaperScissorsGame-2.1.6 docs/script/release
PlayRockPaperScissorsGame-2.1.6 docs/_site/script/release
PlayRockPaperScissorsGame-2.1.5 docs/script/release
PlayRockPaperScissorsGame-2.1.5 docs/_site/script/release
PlayRockPaperScissorsGame-2.1.4 docs/_site/script/release
PlayRockPaperScissorsGame-2.1.4 docs/script/release
PlayRockPaperScissorsGame-2.1.3 docs/script/release
PlayRockPaperScissorsGame-2.1.3 docs/_site/script/release
PlayRockPaperScissorsGame-2.1.2 docs/script/release
PlayRockPaperScissorsGame-2.1.2 docs/_site/script/release
PlayRockPaperScissorsGame-2.1.1 docs/script/release
PlayRockPaperScissorsGame-2.1.1 docs/_site/script/release