Skip to content

Bump version

Bump version #5

Workflow file for this run

name: tests
on:
- push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Build and test
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake test
publish:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
mkdir ~/.gem
echo ":github: Bearer ${{ secrets.GITHUB_TOKEN }}" >> ~/.gem/credentials
chmod 600 ~/.gem/credentials
- run: gem build rich-text.gemspec
- run: gem push --key github --host https://rubygems.pkg.github.com/feedbackfruits rich-text-*.gem