7 lines
85 B
Bash
7 lines
85 B
Bash
#!/bin/sh
|
|
# Tag and push a release.
|
|
|
|
set -e
|
|
|
|
script/cibuild
|
|
bundle exec rake release
|