Skip to content

Commit

Permalink
Add rubygem release action
Browse files Browse the repository at this point in the history
  • Loading branch information
shadabahmed committed Jan 20, 2022
1 parent db4c463 commit f28e910
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 2 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# .github/workflows/release.yml

name: Publish to Rubygems

on:
workflow_run:
workflows: [Tests]
types: [completed]
branches: [main]

jobs:
release:
environment: release
runs-on: ubuntu-latest
steps:
# Create release
- uses: GoogleCloudPlatform/release-please-action@v3
with:
release-type: ruby
command: github-release
package-name: logstasher
bump-minor-pre-major: true
# Path to our version file to increment
version-file: "lib/logstasher/version.rb"
token: "${{secrets.GITHUB_TOKEN}}"
# Checkout code if release was created
- uses: actions/checkout@v2
if: ${{ steps.release.outputs.release_created }}
# Setup ruby if a release was created
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0.0
if: ${{ steps.release.outputs.release_created }}
# Bundle install
- run: bundle install
if: ${{ steps.release.outputs.release_created }}
# Publish to GPR
- name: Publish to GPR
run: |
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
printf -- "---\n:github: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
gem build *.gemspec
gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
env:
GEM_HOST_API_KEY: "Bearer ${{secrets.GITHUB_TOKEN}}"
OWNER: ${{ github.repository_owner }}
if: ${{ steps.release.outputs.release_created }}
# Publish gem to Rubygems
- 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:
# Make sure to update the secret name
# if yours isn't named RUBYGEMS_AUTH_TOKEN
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
if: ${{ steps.release.outputs.release_created }}
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: Tests
on:
pull_request:
branches:
- master
- main
paths-ignore:
- 'README.md'
push:
branches:
- master
- main
paths-ignore:
- 'README.md'

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 2.1.5
* Ruby 3.0 and Rails 6 support

# 1.2.2
* Merge from #142 - Fix bug in detection of ActiveJob

Expand Down

0 comments on commit f28e910

Please sign in to comment.