Sha256: 4e87f0b3989ad1aea936a71ac1ff8fed5a531f297a706dbdbdeafbd3d0cc746a

Contents?: true

Size: 1.38 KB

Versions: 5

Compression:

Stored size: 1.38 KB

Contents

# https://andrewm.codes/blog/automating-ruby-gem-releases-with-github-actions/
name: release

on:
  push:
    branches:
      - main

jobs:
  release-please:
    runs-on: ubuntu-latest
    steps:
      - uses: google-github-actions/release-please-action@v3
        id: release
        with:
          release-type: ruby
          package-name: flipper
          bump-minor-pre-major: true
          version-file: "lib/flipper/version.rb"
      # Checkout code if release was created
      - uses: actions/checkout@v3
        if: ${{ steps.release.outputs.release_created }}
      # Setup ruby if a release was created
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: 3.0.0
        if: ${{ steps.release.outputs.release_created }}
      # Bundle install
      - run: bundle install
        if: ${{ steps.release.outputs.release_created }}
      # Publish
      - name: publish gem
        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:
          # Make sure to update the secret name
          # if yours isn't named RUBYGEMS_AUTH_TOKEN
          GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
        if: ${{ steps.release.outputs.release_created }}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
flipper-0.26.0 .github/workflows/release.yml
flipper-0.26.0.rc2 .github/workflows/release.yml
flipper-0.26.0.rc1 .github/workflows/release.yml
flipper-0.25.4 .github/workflows/release.yml
flipper-0.25.3 .github/workflows/release.yml