Skip to content

Commit

Permalink
fix: modify release process to include submodules, the lack of which …
Browse files Browse the repository at this point in the history
…caused the 1.3.2 gem release to not work at all
  • Loading branch information
jkeen committed Jan 9, 2023
1 parent fdf6383 commit 578af83
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: recursive
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v2
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,20 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
ruby: [ '2.5', '2.6', '2.7', '3.0', '3.1' ]
ruby: [ '2.6', '2.7', '3.0', '3.1' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Build and test with Rake
run: |
gem install bundler
git submodule update --init
git submodule update --init --recursive
bundle install --jobs 4 --retry 3
bundle exec rake
publish:
Expand Down

0 comments on commit 578af83

Please sign in to comment.