Prepare release v28.0.0 #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release RubyGems | |
on: | |
push: | |
branches: [release/*] | |
jobs: | |
publish-rubygem: | |
name: Publish Ruby Gem | |
runs-on: ubuntu-latest | |
environment: Release | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2' | |
bundler-cache: true | |
- uses: cucumber/action-publish-rubygem@v1.0.0 | |
with: | |
rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }} | |
working_directory: ruby |