Sha256: 6ddef99dc3ffd609af0427f6e873c1f73467dc910e7872fd62660917ff23e39c

Contents?: true

Size: 884 Bytes

Versions: 5

Compression:

Stored size: 884 Bytes

Contents

name: Publish

on:
  release:
    types:
      - published

jobs:
  build:
    name: Build + Publish
    runs-on: ubuntu-latest
    if: github.event_name == 'workflow_dispatch' || (github.event_name == 'release' && github.event.action == 'published')
    steps:
      - uses: actions/checkout@v2
        with:
          ref: ${{ github.event.release.tag_name }}

      - name: Set up Ruby 2.6
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.6

      - run: bundle install

      - name: Publish to RubyGems
        run: |
          mkdir -p $HOME/.gem
          touch $HOME/.gem/credentials
          chmod 0600 $HOME/.gem/credentials
          printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
          gem build *.gemspec
          gem push *.gem
        env:
          GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
datadog_api_client-1.11.0 .github/workflows/publish.yml
datadog_api_client-1.10.0 .github/workflows/publish.yml
datadog_api_client-1.9.0 .github/workflows/publish.yml
datadog_api_client-1.8.0 .github/workflows/publish.yml
datadog_api_client-1.7.0 .github/workflows/publish.yml