Sha256: 429f8e672af5194540294b8a7f03f0d804dd7da1bd281fad435cf67b755ded95
Contents?: true
Size: 372 Bytes
Versions: 2
Compression:
Stored size: 372 Bytes
Contents
#!/usr/bin/env bash # Usage: script/release # Build the package, tag a commit, push it to origin, and then release the # package publicly. # set -e version="$(script/package | grep Version: | awk '{print $2}')" [ -n "$version" ] || exit 1 git commit -a -m "Release $version" git tag "v$version" git push origin git push origin "v$version" gem push pkg/*-${version}.gem
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
metriks-middleware-2.1.1 | script/release |
metriks-middleware-2.1.0 | script/release |