Support for rb_io_mode_t
.
#17
Workflow file for this run
This file contains hidden or 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 | |
on: | |
push: | |
pull_request: | |
jobs: | |
github: | |
name: GitHub | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Extract release note | |
run: | | |
ruby \ | |
-e 'print("## stringio "); \ | |
puts(ARGF.read.split(/^## /)[1])' \ | |
NEWS.md | tee release-note.md | |
- name: Create a release | |
if: github.ref_type == 'tag' | |
run: | | |
title="$(head -n1 release-note.md | sed -e 's/^## //')" | |
tail -n +2 release-note.md > release-note-without-version.md | |
gh release create ${GITHUB_REF_NAME} \ | |
--discussion-category Announcements \ | |
--notes-file release-note-without-version.md \ | |
--title "${title}" | |
env: | |
GH_TOKEN: ${{ github.token }} | |
rubygems: | |
name: RubyGems | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
permissions: | |
id-token: write | |
environment: release | |
strategy: | |
matrix: | |
ruby: | |
- ruby | |
- jruby | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Build | |
run: | | |
bundle exec rake compile | |
- uses: rubygems/[email protected] | |
if: github.ref_type == 'tag' | |
- name: Push gems | |
if: github.ref_type == 'tag' | |
run: | | |
bundle exec rake release:rubygem_push |