Skip to content

Commit

Permalink
Add step for building a gem for ruby platform (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
takaebato authored Mar 16, 2024
1 parent ddaf5d0 commit 279c4e2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/gem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ jobs:
platform: ${{ matrix.ruby-platform }}
ruby-versions: 3.0,3.1,3.2,3.3

- name: build gem for platform ruby
if: matrix.ruby-platform == 'x86_64-linux' # Execute once
run: |
gem build sql_insight.gemspec --output=sql_insight-platform-ruby.gem
mv sql_insight-platform-ruby.gem pkg
- uses: actions/upload-artifact@v4
with:
name: cross-gem-${{ matrix.ruby-platform }}
Expand Down

0 comments on commit 279c4e2

Please sign in to comment.