Sha256: 3c78c4a6249175cf6fff712f6ee6515a5a1b3c1fa2857b18126bb281baa047ba
Contents?: true
Size: 840 Bytes
Versions: 5
Compression:
Stored size: 840 Bytes
Contents
workflow: rules: # For merge requests, create a pipeline. - if: '$CI_MERGE_REQUEST_IID' # For `master` branch, create a pipeline (this includes on schedules, pushes, merges, etc.). - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' # For tags, create a pipeline. - if: '$CI_COMMIT_TAG' .test_template: &test_definition stage: test script: - gem install bundler - bundle install - bundle exec rake test2.6: image: ruby:2.6 <<: *test_definition test2.5: image: ruby:2.5 <<: *test_definition test2.4: image: ruby:2.4 <<: *test_definition deploy: image: ruby:2.6 stage: deploy script: - gem install bundler - tools/deploy-rubygem.sh only: - tags release: image: ruby:2.6 stage: deploy script: - tools/update-changelog.rb "${CI_COMMIT_TAG}" only: - tags
Version data entries
5 entries across 5 versions & 1 rubygems