Sha256: d28a637136dd4799b01ba89f0fdec7c6dbde3fbd7a82aeb659d224fa1ea487dc
Contents?: true
Size: 1.27 KB
Versions: 29
Compression:
Stored size: 1.27 KB
Contents
architect: - dgroup assets: rubygems.yml: dgroup/home#rubygems.yml circleci.header: dgroup/home#circleci.header install: | export GEM_HOME=~/.ruby export GEM_PATH=$GEM_HOME:$GEM_PATH docker: image: ruby:2.6.5 release: script: |- set -e export RUBYOPT="-W0" [[ "${tag}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || exit -1 sed -i "s/0\.0\.0/${tag}/g" lib/lazylead/version.rb sed -i "s/0\.0\.0/${tag}/g" lazylead.gemspec bundle install --no-color bundle exec rake --trace test rubocop sqlint xcop git add lib/lazylead/version.rb lazylead.gemspec git commit -m "version set to ${tag}" gem build lazylead.gemspec chmod 0600 ../rubygems.yml gem push *.gem --config-file ../rubygems.yml curl -s -X POST --url "https://circleci.com/api/v2/project/gh/dgroup/lazylead/envvar" -H @../circleci.header -H "accept: application/json" -H "content-type: application/json" -d "{ \"name\": \"DOCKER_RELEASE_TAGS\", \"value\": \"${tag}\" }" -o /dev/null curl -s -X POST --url https://circleci.com/api/v2/project/gh/dgroup/lazylead/pipeline -H @../circleci.header -H 'accept: application/json' -H 'content-type: application/json' -H 'x-attribution-login: dgroup' -o /dev/null merge: script: |- bundle install bundle exec rake test rubocop sqlint xcop
Version data entries
29 entries across 29 versions & 1 rubygems