chore: Update CI matrix to include Ruby 3.2, and workaround minitest … #37
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 hook] Update open releases" | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release-update-open-requests: | |
if: ${{ github.repository == 'cloudevents/sdk-ruby' }} | |
env: | |
ruby_version: "2.7" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Ruby ${{ env.ruby_version }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ env.ruby_version }} | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Install Toys | |
run: "gem install --no-document toys" | |
- name: Update open releases | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
toys release _onpush --verbose \ | |
< /dev/null |