Skip to content

Ruby 3 compatibility #4

Ruby 3 compatibility

Ruby 3 compatibility #4

Workflow file for this run

name: Release and Publish Gem
on:
release:
types: [published]
jobs:
build:
name: "Build gem package"
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: "Publish gem"
shell: bash
run: |
mkdir ~/.gem
echo '---' > ~/.gem/credentials
echo ':github: Bearer ${{ secrets.GITHUB_TOKEN }}' >> ~/.gem/credentials
chmod 0600 ~/.gem/credentials
make publish