Skip to content

Commit

Permalink
Add publish Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
wvengen committed Nov 3, 2023
1 parent de94c65 commit b502d2d
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/gem-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Publish Ruby Gem

on:
push:
tags:
- v*

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

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Ruby
uses: actions/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 b502d2d

Please sign in to comment.