We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9448fb3 commit f17e556Copy full SHA for f17e556
.github/workflows/build-branch.yml
@@ -22,12 +22,19 @@ jobs:
22
bundler-cache: true
23
- name: Run tests
24
run: bundle exec rake
25
+
26
# release the tag to rubygems
27
release:
28
if: github.ref == 'refs/heads/main'
29
runs-on: ubuntu-latest
30
+ strategy:
31
+ matrix:
32
+ ruby-version: ['3.0']
33
steps:
34
- uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
35
+ with:
36
+ ruby-version: ${{ matrix.ruby-version }}
37
+ bundler-cache: true
38
- uses: actions/checkout@v1
39
- name: Release Gem
40
uses: cadwallion/publish-rubygems-action@master
0 commit comments