Skip to content

Commit

Permalink
Merge pull request #1 from openfoodfoundation/gem-push
Browse files Browse the repository at this point in the history
Create workflow to push to RubyGems on release
  • Loading branch information
mkllnk authored Mar 1, 2024
2 parents dc0de2c + 925fd88 commit c1a4f59
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/gem-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Ruby Gem

on:
release:
types: [created]

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

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

- 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}}"
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rspec-sql (0.0.0)
rspec-sql (0.0.1)
activesupport
rspec

Expand Down
2 changes: 1 addition & 1 deletion rspec-sql.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "rspec-sql"
s.version = "0.0.0"
s.version = "0.0.1"
s.summary = "RSpec::Sql matcher"
s.description = "RSpec matcher for database queries."
s.authors = ["Maikel Linke", "Open Food Network contributors"]
Expand Down

0 comments on commit c1a4f59

Please sign in to comment.