Sha256: 68e03e272b0894e55a9c1ef93be338824f3e1c24d95a0bc5c2c9a757fc345391

Contents?: true

Size: 345 Bytes

Versions: 3

Compression:

Stored size: 345 Bytes

Contents

image: ruby:3.0.2

stages:
  - build
  - test
  - deploy

before_script:
  - gem install bundler:2.2.22
  - bundle install

build_gem:
  stage: build
  script:
    - gem build

rspec:
  stage: test
  script:
    - bundle exec rspec

deploy:
  stage: deploy
  script:
    - gem push dri*.gem
  rules:
    - if: '$CI_COMMIT_TAG'
      when: always

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dri-0.1.2 .gitlab-ci.yml
dri-0.1.1 .gitlab-ci.yml
dri-0.1.0 .gitlab-ci.yml