Sha256: ac863617d290170f42b8f6574a43bcad64a5f824e75d5310657d3f7c521f5b3a
Contents?: true
Size: 840 Bytes
Versions: 7
Compression:
Stored size: 840 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? Meh. # bundle update # Build a new gem archive. rm -rf jekyll-external-links-*.gem gem build -q jekyll-external-links.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-external-links-*.gem | sed 's/^jekyll-external-links-\(.*\)\.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-external-links-*.gem && git tag "$tag" && git push origin master && git push origin "$tag"
Version data entries
7 entries across 7 versions & 1 rubygems