Skip to content

New Schema Update from QA #287

New Schema Update from QA

New Schema Update from QA #287

Workflow file for this run

name: Ruby Gem CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: Build + Publish
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 3.1.0
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.0
- name: Publish to RubyGems
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: |
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
gem build *.gemspec
gem push *.gem
env:
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_API_KEY}}"