We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf4fb28 commit 0efe550Copy full SHA for 0efe550
.github/workflows/release.yaml
@@ -60,6 +60,7 @@ jobs:
60
if: github.event.inputs.rebuild == 'v0.0.0'
61
run: |
62
mvn -q versions:set -DremoveSnapshot
63
+ export VERSION=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)
64
git add .
65
git commit -m "release ${VERSION}"
66
git tag -f v${VERSION}
kafka-ui-e2e-checks/pom.xml
@@ -11,7 +11,7 @@
11
12
<artifactId>kafka-ui-e2e-checks</artifactId>
13
<properties>
14
- <kafka-ui-contract>0.1.1-SNAPSHOT</kafka-ui-contract>
+ <kafka-ui-contract>${project.version}</kafka-ui-contract>
15
<junit.version>5.7.0</junit.version>
16
<aspectj.version>1.9.6</aspectj.version>
17
<allure.version>2.13.7</allure.version>
0 commit comments