Sha256: f306b977c47fe38eee9841593f77ab18f9168a5f2b171aa0f926cf4f49cba5e3
Contents?: true
Size: 1.26 KB
Versions: 1
Compression:
Stored size: 1.26 KB
Contents
#!/bin/sh # # Publish new gem version and creates GH tag for it. # ### set -e set -o nounset set -o errexit #set -o pipefail mkdir -p $HOME/.gem touch $HOME/.gem/credentials chmod 0600 $HOME/.gem/credentials printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials gem build *.gemspec gem push *.gem #rake release version=`< VERSION` echo "VEEEEERSION" echo $version #GITHUB_TOKEN=${GITHUB_TOKEN} hub release create -a ${ARTIFACTS_OUTPUT} -m "v${VERSION}" ${VERSION} tar -c -f binaries *.gem GITHUB_TOKEN=${GITHUB_TOKEN} hub release create -a ../binaries -m "v${version}" ${version} #docker build --rm --tag codeclimate/codeclimate . #docker push codeclimate/codeclimate:latest #docker tag codeclimate/codeclimate "codeclimate/codeclimate:$version" #docker push "codeclimate/codeclimate:$version" #PROJECT_RELATIVE_PATH=src/github.com/codeclimate/test-reporter # ## Install go #curl -O https://dl.google.com/go/go1.15.darwin-amd64.tar.gz #tar -xzf go1.15.darwin-amd64.tar.gz #echo 'export PATH=$PATH:$PWD/go/bin' >> "$BASH_ENV" # ## Set go path #mkdir -p ~/gopath/${PROJECT_RELATIVE_PATH} #echo 'export GOPATH=$HOME/gopath' >> "$BASH_ENV" #. "$BASH_ENV" #cd $GOPATH/${PROJECT_RELATIVE_PATH} #cp -r ~/project/ $GOPATH/${PROJECT_RELATIVE_PATH}
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
codeclimate-fede-0.85.37 | bin/publish |