Sha256: 33ef0ab7789243d425786d5c89bb480644c5caf5df6ed295983c0c02e42766f0
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 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` #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.36 | bin/publish |