uses mvn:versions instead of jgitver
Some checks failed
CI / deploy (push) Failing after 4m42s

This commit is contained in:
2025-02-11 22:11:09 +01:00
parent 1544776ecc
commit a350a99ced
4 changed files with 8 additions and 32 deletions

View File

@@ -37,7 +37,7 @@ jobs:
title: ${{ env.REPO }} Coverage
- id: version
run: echo "version=$(./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout)" >> "GITHUB_OUTPUT"
run: echo '::set-output VERSION=$(./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout)'
- name: Build Container
if: github.ref_name == 'main'
@@ -50,5 +50,8 @@ jobs:
- name: create tag
if: github.ref_name == 'main'
run: |
echo ${{ steps.version.outputs.VERSION }}
git commit -m "[no ci] release ${{ steps.version.outputs.version }}"
git tag ${{ steps.version.outputs.version }} -m "release ${{ steps.version.outputs.version }}"
git push origin main
git push origin ${{ steps.version.outputs.version }}