Skip to content

Commit

Permalink
fix: gem version syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
romainfd committed Dec 24, 2024
1 parent 4b1544e commit c4130b9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/generate-libs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,10 @@ jobs:

- name: Ruby - Build Gem
working-directory: ./generator_ruby/gem/
run: gem build hubsante_model.gemspec
env:
GEM_VERSION: ${{ env.RELEASE_VERSION | replace('+', '.') }}
run: |
GEM_VERSION=${{ env.RELEASE_VERSION }};
GEM_VERSION=${GEM_VERSION//+/.};
gem build hubsante_model.gemspec
- name: Ruby - Upload Gem as artifact
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit c4130b9

Please sign in to comment.