Skip to content

Commit

Permalink
Added guard last item to Children Array (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Jan 24, 2024
1 parent 80c871e commit d0c3563
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
run: gem build expressir.gemspec

- name: Package gem without native extension
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pkg-ruby
path: expressir-*.gem
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
run: bundle exec rake gem:${{ matrix.platform }}

- name: Package gem with native extension
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pkg-${{ matrix.platform }}
path: pkg/*.gem
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ jobs:
gem build expressir.gemspec | grep -o 'Version: .*' | awk '{print $2}' > version
- if: matrix.platform == 'linux-gnu'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pkg-ruby
path: expressir-*.gem

- if: matrix.platform == 'linux-gnu'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: version
path: version
Expand All @@ -87,7 +87,7 @@ jobs:
# build gem WITH pre-built native extension
- run: bundle exec rake gem:${{ matrix.platform }}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: pkg-${{ matrix.platform }}
path: pkg/*.gem
Expand Down
Loading

0 comments on commit d0c3563

Please sign in to comment.