File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 77jobs :
88 build :
99 name : Build + Publish
10- runs-on : ubuntu-latest
10+ strategy :
11+ fail-fast : false
12+ matrix :
13+ os : [ubuntu-latest, macos-latest]
14+ ruby : ["2.7"]
15+ runs-on : ${{ matrix.os }}
1116 permissions :
1217 contents : read
1318 packages : write
@@ -21,10 +26,11 @@ jobs:
2126 run : |
2227 echo $VERSION
2328 echo ${{ env.VERSION }}
24- - name : Set up Ruby 2.6
25- uses : actions /setup-ruby@v1
29+ - name : Set up Ruby Versions
30+ uses : ruby /setup-ruby@v1
2631 with :
27- ruby-version : 2.6.x
32+ ruby-version : ${{ matrix.ruby }}
33+ bundler-cache : true
2834
2935 - name : Retrieve bearer token
3036 id : get_bearer_token
Original file line number Diff line number Diff line change 2121
2222 steps :
2323 - uses : actions/checkout@v2
24- - name : Set up Ruby 2.6
24+ - name : Set up Ruby Versions
2525 uses : ruby/setup-ruby@v1
2626 with :
2727 ruby-version : ${{ matrix.ruby }}
You can’t perform that action at this time.
0 commit comments