Skip to content

Commit 1e6a865

Browse files
committed
trying to fix release build
1 parent 2c2a9bf commit 1e6a865

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
- name: Export the project version to the job environment and fix it as an ouput of this job
3131
id: setversion
3232
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}"
33+
v=$(mvn help:evaluate "-Dexpression=project.version" -q -DforceStdout)
34+
echo "BUILD_VERSION=${v}" >> $GITHUB_ENV
35+
echo "::set-output name=artifactVersion::${env.BUILD_VERSION}"
3636
- name: Build and Test
3737
run: mvn -B install
3838
- name: Upload snapshot artifact cryptomator-cli-${{ env.BUILD_VERSION }}.jar

0 commit comments

Comments
 (0)