Skip to content

Commit

Permalink
Create workflow for publishing gems
Browse files Browse the repository at this point in the history
Adds a workflow to publish Ruby Gems to RubyGems.org and GPR. cc @mscoutermarsh
  • Loading branch information
pmarsceill authored Aug 13, 2019
1 parent 605718e commit 59c9b73
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions ci/gem-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Ruby Gem

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
build:
name: Build + Publish
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
version: 2.6.x

- name: Publish to GPR
run: |
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
printf -- "---\n:github: Bearer ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
gem build just-the-docs.gemspec
gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
env:
GEM_HOST_API_KEY: ${{secrets.GPR_AUTH_TOKEN}}
OWNER: username

- 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 just-the-docs.gemspec
gem push *.gem
env:
GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}

0 comments on commit 59c9b73

Please sign in to comment.