Sha256: d0604d4fa43c47afa4d497633ab4ed56029cad610240821c57105c9a114bf7e2

Contents?: true

Size: 507 Bytes

Versions: 3

Compression:

Stored size: 507 Bytes

Contents

#!/bin/bash

set -e

git config user.name lstephen
git config user.email levi.stephen@gmail.com
mkdir -p ~/.ssh
cp ${GIT_SSH_KEY} ~/.ssh/id_rsa
chmod 0600 ~/.ssh/id_rsa
printf "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
git config push.default simple
git checkout master
git pull --rebase
echo ${GIT_COMMIT}
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.32.0 construi/release/script.sh
construi-0.31.0 construi/release/script.sh
construi-0.30.0 construi/release/script.sh