Skip to content

Commit

Permalink
Merge pull request #51 from Shopify/rubygems
Browse files Browse the repository at this point in the history
Create gem-push.yml
  • Loading branch information
sbfaulkner committed Oct 29, 2023
2 parents b8f23c4 + 113a9f7 commit 313b4ff
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/gem-push.yml
@@ -0,0 +1,31 @@
name: Ruby Gem

on:
push:
tags: [ "v*" ]

jobs:
build:
name: Build + Publish
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2

- name: Publish to RubyGems
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_AUTH_TOKEN}}"

0 comments on commit 313b4ff

Please sign in to comment.