File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
3+ # https://github.com/actions/virtual-environments
4+ name : Release
5+ on :
6+ push :
7+ tags :
8+ - " v*"
9+ concurrency : ${{ github.workflow }}
10+ jobs :
11+ gem :
12+ name : Gem
13+ if : github.repository == 'redis-rb/redis-cluster-client'
14+ timeout-minutes : 10
15+ runs-on : ubuntu-latest
16+ permissions :
17+ id-token : write
18+ contents : read
19+ steps :
20+ - uses : actions/checkout@v4
21+ - name : Set up Ruby
22+ uses : ruby/setup-ruby@v1
23+ with :
24+ ruby-version : ruby
25+ bundler-cache : true
26+ - uses : rubygems/release-gem@v1
Original file line number Diff line number Diff line change 11[ ![ Gem Version] ( https://badge.fury.io/rb/redis-cluster-client.svg )] ( https://badge.fury.io/rb/redis-cluster-client )
22![ Test status] ( https://github.com/redis-rb/redis-cluster-client/workflows/Test/badge.svg?branch=master )
3+ ![ Release status] ( https://github.com/redis-rb/redis-cluster-client/workflows/Release/badge.svg )
34
45Redis Cluster Client
56===============================================================================
You can’t perform that action at this time.
0 commit comments