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 2c2a9bf commit 1e6a865Copy full SHA for 1e6a865
.github/workflows/build.yml
@@ -30,9 +30,9 @@ 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
- BUILD_VERSION=$(mvn help:evaluate "-Dexpression=project.version" -q -DforceStdout)
34
- echo "${BUILD_VERSION}" >> $GITHUB_ENV
35
- echo "::set-output name=artifactVersion::${BUILD_VERSION}"
+ v=$(mvn help:evaluate "-Dexpression=project.version" -q -DforceStdout)
+ echo "BUILD_VERSION=${v}" >> $GITHUB_ENV
+ echo "::set-output name=artifactVersion::${env.BUILD_VERSION}"
36
- name: Build and Test
37
run: mvn -B install
38
- name: Upload snapshot artifact cryptomator-cli-${{ env.BUILD_VERSION }}.jar
0 commit comments