Sha256: 84c80cc7db2b3faacc5a18b2f4727b28bd692c3b7db15f67876ee30c7930e16f
Contents?: true
Size: 429 Bytes
Versions: 7
Compression:
Stored size: 429 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 --allow-empty -a -m "Release $version" git tag "v$version" git push origin git push origin "v$version" git push legacy git push legacy "v$version" gem push pkg/*-${version}.gem
Version data entries
7 entries across 7 versions & 2 rubygems