Sha256: 133bda8675fec587255913c3db7f39092fb0d7504d63b0a36b34871bcae1eb8f

Contents?: true

Size: 765 Bytes

Versions: 6

Compression:

Stored size: 765 Bytes

Contents

name: Publish Gem

on:
  push:
    tags:
      - '*'

env:
  RUBYGEMS_USER: ${{ secrets.RUBYGEMS_USER }}
  RUBYGEMS_PASSWORD: ${{ secrets.RUBYGEMS_PASSWORD }}

jobs:
  publish:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout code
        uses: actions/checkout@v2

      - name: Set up Ruby
        uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
        with:
          ruby-version: '2.7'

      - name: Publish gem
        run: |
          curl -u $RUBYGEMS_USER:$RUBYGEMS_PASSWORD https://rubygems.org/api/v1/api_key.yaml > ~/.gem/credentials
          chmod 0600 ~/.gem/credentials
          make push
        env:
          RUBYGEMS_USER: ${{ secrets.RUBYGEMS_USER }}
          RUBYGEMS_PASSWORD: ${{ secrets.RUBYGEMS_PASSWORD }}

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
fluent-plugin-azurestorage-gen2-0.3.9 .github/workflows/publish.yml
fluent-plugin-azurestorage-gen2-0.3.8 .github/workflows/publish.yml
fluent-plugin-azurestorage-gen2-0.3.7 .github/workflows/publish.yml
fluent-plugin-redaction-0.1.3 .github/workflows/publish.yml
fluent-plugin-azurestorage-gen2-0.3.5 .github/workflows/publish.yml
fluent-plugin-azurestorage-gen2-0.3.4 .github/workflows/publish.yml