From 9e93576a2de9bf96e88172239d7a4e8d94e94338 Mon Sep 17 00:00:00 2001 From: Arindy Date: Tue, 11 Feb 2025 21:51:15 +0100 Subject: [PATCH] fix tag --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 729792e..4e00e27 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -47,6 +47,6 @@ jobs: - name: create tag if: github.ref_name == 'main' run: | - version = var=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout) + version = var=$(./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout) git tag ${version} -m "release ${version}" git push origin ${version}