Sha256: c37dab0f34048b3e0f51e8b09be63dd5b6ce0645342fb805734c8b580207e27f
Contents?: true
Size: 478 Bytes
Versions: 1
Compression:
Stored size: 478 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 --set-upstream $GIT_BRANCH origin/master bundle install --path vendor/bundle bundle exec gem release --tag
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
construi-0.33.0 | construi/deploy/script.sh |