Sha256: ebc41114eef1616ec92320897d794ada336863ced0897d70d470da00d1965901

Contents?: true

Size: 707 Bytes

Versions: 1

Compression:

Stored size: 707 Bytes

Contents

trigger:
- main
- feature/*

pool:
  vmImage: 'ubuntu-latest'

variables:
  - group: SAUDEID-GEM

jobs:
  - job: Building
    steps:
      - task: UseRubyVersion@0
        inputs:
          versionSpec: '>= 2.7.1'
          addToPath: true
        displayName: 'Installing Ruby'

      - script: |
          which ruby

      - script: |
          gem install bundler
          bundle install --retry=3 --jobs=4
        displayName: 'Installing Bundler and Gems' 

      - script: |
          gem build SaudeiD.gemspec
          GEM_VERSION=$(gem build SaudeiD.gemspec | grep -P 'File: \K.+' -o)          
          gem push $GEM_VERSION -k $(GEM_HOST_API_KEY)
        displayName: Build Gem and Publish Gem

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
SaudeiD-0.2.9 azure-pipelines.yaml