Skip to content

Commit 0efe550

Browse files
fix: use project version in e2e dependencies
1 parent bf4fb28 commit 0efe550

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ jobs:
6060
if: github.event.inputs.rebuild == 'v0.0.0'
6161
run: |
6262
mvn -q versions:set -DremoveSnapshot
63+
export VERSION=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)
6364
git add .
6465
git commit -m "release ${VERSION}"
6566
git tag -f v${VERSION}

kafka-ui-e2e-checks/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<artifactId>kafka-ui-e2e-checks</artifactId>
1313
<properties>
14-
<kafka-ui-contract>0.1.1-SNAPSHOT</kafka-ui-contract>
14+
<kafka-ui-contract>${project.version}</kafka-ui-contract>
1515
<junit.version>5.7.0</junit.version>
1616
<aspectj.version>1.9.6</aspectj.version>
1717
<allure.version>2.13.7</allure.version>

0 commit comments

Comments
 (0)