Sha256: 6512eebd3a0f62eef4377e3fafcb70d599cfd45501fe3e929fb08876d004f0e8
Contents?: true
Size: 298 Bytes
Versions: 40
Compression:
Stored size: 298 Bytes
Contents
#!/usr/bin/env ruby require_relative '../lib/kumo_keisei' def run_command(cmd) puts cmd puts `#{cmd}` raise "non zero exit code" if $?.exitstatus != 0 end tag = File.read(File.expand_path('../../VERSION', __FILE__)).strip run_command "git tag #{tag}" run_command "git push origin #{tag}"
Version data entries
40 entries across 40 versions & 1 rubygems