Sha256: 0c4ccbc78e6014d2d0de438a81cb34fa24d3e9d60ba83ae3b38adebd3d3ea154

Contents?: true

Size: 518 Bytes

Versions: 5

Compression:

Stored size: 518 Bytes

Contents

---
name: Publish

on:
  push:
    tags:
      - '*'

jobs:
  publish:
    needs:
      - lint
      - test

    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby 2.7
        uses: actions/setup-ruby@v1
        with:
          ruby-version: 2.7.x
      - name: Build and test with Rake
        run: |
          gem install bundler
          bundle install --jobs 4 --retry 3
          bundle exec rake release
        with:
          api_key: ${{secrets.RUBYGEMS_API_KEY}}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cronitor-5.0.0 .github/workflows/publish.yml
cronitor-4.1.2 .github/workflows/publish.yml
cronitor-4.1.1 .github/workflows/publish.yml
cronitor-4.1.0 .github/workflows/publish.yml
cronitor-4.0.0 .github/workflows/publish.yml