Skip to content

Publish Gem

Publish Gem #3

Workflow file for this run

name: Publish Gem
on:
workflow_run:
workflows: ["Ruby CI"]
release:
types:
- released
types:
- completed
jobs:
build:
name: Build + Publish
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
- name: Install dependencies
run: bundle install