Sha256: c5b7187a1ff9f63ac6c97a2b0cb88d554460f5639744e2f1d316b158130cfa23
Contents?: true
Size: 795 Bytes
Versions: 8
Compression:
Stored size: 795 Bytes
Contents
#!/bin/bash echo -e "---\n:rubygems_api_key: $GEM_API_KEY" > ~/.gem/credentials chmod 0600 ~/.gem/credentials cd lf-git build_version=$(ruby -r ./lib/license_finder/version.rb -e "puts LicenseFinder::VERSION") built_gem="pkg/license_finder-$build_version.gem" git config --global user.email $GIT_EMAIL git config --global user.name $GIT_USERNAME mkdir ~/.ssh ssh-keyscan github.com >> ~/.ssh/known_hosts eval "$(ssh-agent -s)" echo "$GIT_PRIVATE_KEY" > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-add -k ~/.ssh/id_rsa if [ -z "$(gem fetch license_finder -v $build_version 2>&1 | grep ERROR)" ]; then echo "LicenseFinder-$build_version already exists on Rubygems" else rake release fi export EXIT_STATUS=$? kill $(ps aux | grep ssh-agent | head -n 1 | awk '{print $2}') exit $EXIT_STATUS
Version data entries
8 entries across 8 versions & 1 rubygems