Skip to content

Merge branch 'main' of github.com:descope/ruby-sdk #65

Merge branch 'main' of github.com:descope/ruby-sdk

Merge branch 'main' of github.com:descope/ruby-sdk #65

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build Ruby SDK
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
# We are not letting this step to run bundle install, we will do it later
bundler-cache: false
- name: Install dependencies
run: bundle install
- name: Run RSpec Test
run: bundle exec rspec
# in order to release use conventional commits
# $ git commit --allow-empty -m "chore: release 1.0.0" -m "Release-As: 1.0.0" && git push
# this will open a new PR with the changelog and bump the version
- uses: google-github-actions/release-please-action@v4
id: release
with:
skip-github-release: true
config-file: release-please-config.json
manifest-file: .release-please-manifest.json
pull-request-title-pattern: "chore(release): ${version}"
pull-request-header: ":robot: Merge this PR to release a new version"
if: github.ref == 'refs/heads/main'
- 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}}"
if: ${{ steps.release.outputs.release_created }}