FFFF Merge pull request #291 from tenderlove/fix-publishing · bcrypt-ruby/bcrypt-ruby@36a04a2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 36a04a2

Browse files
authored
Merge pull request #291 from tenderlove/fix-publishing
Move compilation after bundle install
2 parents 82e6c4c + 01cc688 commit 36a04a2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,16 @@ jobs:
4444
sudo apt install default-jdk maven
4545
gem update --system
4646
gem install ruby-maven rake-compiler --no-document
47-
rake compile
4847
if: matrix.ruby == 'jruby'
4948

5049
- name: Install dependencies
5150
run: bundle install --jobs 4 --retry 3
5251

52+
- name: Compile on JRuby
53+
run: |
54+
rake compile
55+
if: matrix.ruby == 'jruby'
56+
5357
- name: Publish to RubyGems
5458
uses: rubygems/release-gem@v1
5559

0 commit comments

Comments
 (0)
0