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.
2 parents d96e444 + 2c2a9bf commit ff63f3dCopy full SHA for ff63f3d
.github/workflows/build.yml
@@ -30,8 +30,8 @@ jobs:
30
- name: Export the project version to the job environment and fix it as an ouput of this job
31
id: setversion
32
run: |
33
- v=$(mvn help:evaluate "-Dexpression=project.version" -q -DforceStdout)
34
- echo "BUILD_VERSION=${v}" >> $GITHUB_ENV
+ BUILD_VERSION=$(mvn help:evaluate "-Dexpression=project.version" -q -DforceStdout)
+ echo "${BUILD_VERSION}" >> $GITHUB_ENV
35
echo "::set-output name=artifactVersion::${BUILD_VERSION}"
36
- name: Build and Test
37
run: mvn -B install
0 commit comments