Sha256: b55840e089c43042b88cad9311d8a42c948b0043ff255f5073f49ace15af5b48
Contents?: true
Size: 738 Bytes
Versions: 3
Compression:
Stored size: 738 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 dvl-flashes-*.gem gem build -q dvl-flashes.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 dvl-flashes-*.gem | sed 's/^dvl-flashes-\(.*\)\.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 dvl-flashes-*.gem && git tag "$tag" && git push origin master && git push origin "$tag"
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
dvl-flashes-0.0.4 | script/release |
dvl-flashes-0.0.3 | script/release |
dvl-flashes-0.0.2 | script/release |