File tree 4 files changed +57
-3
lines changed
4 files changed +57
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : CD
2
+
3
+ on :
4
+ workflow_run :
5
+ workflows : [CI]
6
+ types : [completed]
7
+ branches : [main]
8
+ jobs :
9
+ deploy :
10
+ runs-on : ubuntu-latest
11
+ if : ${{ github.event.workflow_run.conclusion == 'success' }}
12
+ steps :
13
+ - uses : actions/checkout@8230315d06ad95c617244d2f265d237a1682d445
14
+ - name : Tag and Push Gem
15
+ id : tag-and-push-gem
16
+ uses : discourse/publish-rubygems-action@04549cca4eecd343acd215114ebbbdb99630af90
17
+ env :
18
+ GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
19
+ GIT_EMAIL : ${{secrets.ALEX_GIT_EMAIL}}
20
+ GIT_NAME : ${{secrets.ALEX_GIT_NAME}}
21
+ RUBYGEMS_API_KEY : ${{secrets.RUBYGEMS_API_KEY}}
22
+ - name : Create GitHub Release
23
+ run : gh release create v${{steps.tag-and-push-gem.outputs.gem_version}} --generate-notes
24
+ if : ${{ steps.tag-and-push-gem.outputs.new_version == 'true' }}
25
+ env :
26
+ GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ rspec :
7
+ runs-on : ubuntu-latest
8
+ strategy :
9
+ matrix :
10
+ ruby :
11
+ - 2.7
12
+ # See comment comes from https://github.com/ruby/setup-ruby#matrix-of-ruby-versions
13
+ # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
14
+ - ' 3.0'
15
+ - 3.1
16
+ env :
17
+ BUNDLE_GEMFILE : Gemfile
18
+ name : " RSpec tests: Ruby ${{ matrix.ruby }}"
19
+ steps :
20
+ - uses : actions/checkout@8230315d06ad95c617244d2f265d237a1682d445
21
+ - name : Set up Ruby ${{ matrix.ruby }}
22
+ uses : ruby/setup-ruby@eae47962baca661befdfd24e4d6c34ade04858f7
23
+ with :
24
+ bundler-cache : true
25
+ ruby-version : ${{ matrix.ruby }}
26
+ - name : Run tests
27
+ run : bundle exec rspec
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- bigrails-redis (0.7.0 )
4
+ bigrails-redis (0.7.1 )
5
5
activesupport (>= 6 )
6
6
railties (>= 6 )
7
7
redis (>= 4 )
111
111
zeitwerk (2.5.4 )
112
112
113
113
PLATFORMS
114
+ arm64-darwin-20
114
115
arm64-darwin-21
115
116
x86_64-darwin-21
116
117
x86_64-linux
@@ -125,4 +126,4 @@ DEPENDENCIES
125
126
standard
126
127
127
128
BUNDLED WITH
128
- 2.2.32
129
+ 2.4.12
Original file line number Diff line number Diff line change 2
2
3
3
module BigRails
4
4
module Redis
5
- VERSION = "0.7.0 "
5
+ VERSION = "0.7.1 "
6
6
end
7
7
end
You can’t perform that action at this time.
0 commit comments