Sha256: 47140418ee35bb0c825b8237fd7784bbe0dc8595bb200d3e5d7660482f62251d

Contents?: true

Size: 456 Bytes

Versions: 9

Compression:

Stored size: 456 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

mkdir -p ~/.gem
printf -- "---\\n:rubygems_api_key: ${RUBYGEMS_API_KEY}" >> ~/.gem/credentials
chmod 0600 ~/.gem/credentials

git branch -u $GIT_BRANCH

bundle install --path vendor/bundle
bundle exec gem release --tag

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
construi-0.41.0 construi/deploy/script.sh
construi-0.40.0 construi/deploy/script.sh
construi-0.39.0 construi/deploy/script.sh
construi-0.38.0 construi/deploy/script.sh
construi-0.37.0 construi/deploy/script.sh
construi-0.36.0 construi/deploy/script.sh
construi-0.35.2 construi/deploy/script.sh
construi-0.35.1 construi/deploy/script.sh
construi-0.35.0 construi/deploy/script.sh