Skip to content

ci: fix dependabot config #27

ci: fix dependabot config

ci: fix dependabot config #27

Workflow file for this run

on:
push:
branches:
- main
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: ruby
package-name: sensible_logging
version-file: lib/sensible_logging/version.rb
- uses: actions/checkout@v2
with:
fetch-depth: 0 # so we can get tags
if: ${{ steps.release.outputs.release_created }}
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
if: ${{ steps.release.outputs.release_created }}
- run: bundle exec rake release
env:
GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
if: ${{ steps.release.outputs.release_created }}