Sha256: c629349658f014ce8500eb41abfe910220d6b38d359e3ab751a37ad9eb90803b

Contents?: true

Size: 483 Bytes

Versions: 3

Compression:

Stored size: 483 Bytes

Contents

#!/bin/bash

set -e

[[ -n "$GIT_AUTHOR_NAME" ]] && git config user.name $GIT_AUTHOR_NAME
[[ -n "$GIT_AUTHOR_EMAIL" ]] && git config user.email $GIT_AUTHOR_EMAIL

printf "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config

git config push.default simple
git checkout master
git pull --rebase
git merge --commit ${GIT_COMMIT}
git push origin
git checkout develop
git pull --rebase
bundle install --path vendor/bundle
bundle exec gem bump --version minor
git push origin

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
construi-0.35.2 construi/release/script.sh
construi-0.35.1 construi/release/script.sh
construi-0.35.0 construi/release/script.sh