Skip to content

Commit

Permalink
deploy github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Fenner committed Nov 4, 2020
1 parent 199fa19 commit 1faac79
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
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:
bolognese (1.8.15)
bolognese (1.8.16)
activesupport (>= 4.2.5)
benchmark_methods (~> 0.7)
bibtex-ruby (>= 5.1.0)
Expand Down
23 changes: 23 additions & 0 deletions lib/bolognese/.github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy Ruby Gem

on:
push:
branches:
- "master"
jobs:
build:
name: Build + Publish
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x

- name: Build and test
run: |
gem install bundler
bundle install
bundle exec rspec spec
2 changes: 1 addition & 1 deletion lib/bolognese/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Bolognese
VERSION = "1.8.15"
VERSION = "1.8.16"
end

0 comments on commit 1faac79

Please sign in to comment.