Sha256: 7770ae980c78f39c7e521682b125cec9f59e09f9a6f7d2c52dd2394974b08f95

Contents?: true

Size: 755 Bytes

Versions: 2

Compression:

Stored size: 755 Bytes

Contents

name: Publish Ruby Gem

on:
  workflow_dispatch:
    inputs:
      otp:
        description: 'One Time Password'
        required: true

jobs:
  build:
    name: Build + Publish
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby 2.6
      uses: actions/setup-ruby@v1
      with:
        ruby-version: 2.6.x

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fluent-plugin-azure-storage-append-blob-lts-0.4.0 .github/workflows/publish.yaml
fluent-plugin-azure-storage-append-blob-lts-0.3.0 .github/workflows/publish.yaml