Sha256: 0451af68db1cd4d486844d8ae495ba8735297db2160d2c18f8a43765de944d54

Contents?: true

Size: 634 Bytes

Versions: 7

Compression:

Stored size: 634 Bytes

Contents

stages:
  - release

image: ruby:2.4.0

before_script:
  - bundle install --jobs=4 --with development

publish:
  stage: release
  script:
    - echo "---" > ~/.gem/credentials
    - COLON=':' && echo "${COLON}rubygems_api_key${COLON} ${RUBYGEMS_API_KEY}" >> ~/.gem/credentials
    - git config --global user.email "norad.dev@gmail.com"
    - git config --global user.name "Norad Release"
    - git config --global push.default simple
    - chmod 0600 ~/.gem/credentials
    - bundle exec rake build
    - bundle exec rake release:guard_clean
    - gem push `ls ./pkg/norad_spec_runner-*.gem`
    - rm -fr ~/.gem
  only:
    - master

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
norad_spec_runner-0.4.0 .gitlab-ci.yml
norad_spec_runner-0.3.5 .gitlab-ci.yml
norad_spec_runner-0.3.4 .gitlab-ci.yml
norad_spec_runner-0.3.3 .gitlab-ci.yml
norad_spec_runner-0.3.2 .gitlab-ci.yml
norad_spec_runner-0.3.1 .gitlab-ci.yml
norad_spec_runner-0.3.0 .gitlab-ci.yml