Skip to content

Commit

Permalink
fix: correct java version (#2752)
Browse files Browse the repository at this point in the history
We need to strip the leading 'v'
  • Loading branch information
stuartwdouglas authored Sep 20, 2024
1 parent 597b985 commit 1a5af78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
- name: Set Version
working-directory: ./jvm-runtime/ftl-runtime
run: mvn versions:set -DnewVersion=${{ github.ref_name }}
run: mvn versions:set -DnewVersion="$(echo ${{ github.ref_name }} | sed s/v//)"

- name: Build, Test, and Deploy to Maven Central
working-directory: ./jvm-runtime/ftl-runtime
Expand Down

0 comments on commit 1a5af78

Please sign in to comment.