Skip to content

Commit

Permalink
Add publish workflow (#39)
Browse files Browse the repository at this point in the history
This new workflow will, on the creation of a new GitHub Release, package
and publish a version of the gem to RubyGems.org and GitHub Packages.
  • Loading branch information
jgarber623 authored Mar 16, 2024
1 parent 0d349dd commit caf1301
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Publish

on:
release:
types: [published]

jobs:
ci:
name: CI
uses: ./.github/workflows/ci.yml
publish-to-rubygems:
name: Publish to RubyGems
permissions:
contents: write
id-token: write
needs: ci
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- uses: rubygems/release-gem@v1
with:
await-release: false
publish-to-github-packages:
name: Publish to GitHub Packages
permissions:
contents: read
packages: write
needs: ci
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: |
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
printf -- "---\n:github: Bearer ${{ secrets.GITHUB_TOKEN }}\n" > $HOME/.gem/credentials
- run: bundle exec rake release
env:
BUNDLE_GEM__PUSH_KEY: github
RUBYGEMS_HOST: "https://rubygems.pkg.github.com/${{ github.repository_owner }}"

0 comments on commit caf1301

Please sign in to comment.