We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fcad4b commit 0044819Copy full SHA for 0044819
.github/workflows/ci-master.yml
@@ -64,7 +64,7 @@ jobs:
64
- name: Build with Maven # run Maven without tests (tests must pass in dev branch)
65
run: |
66
export CURRENT_VERSION="${{ steps.release_version.outputs.version }}"
67
- export NEW_VERSION="$( echo ${CURRENT_VERSION} | sed 's/^v//')"
+ export NEW_VERSION="$( echo ${CURRENT_VERSION} | sed 's/^v//; s/-.*//')"
68
echo $NEW_VERSION > version.txt
69
echo "Version: $(cat version.txt)"
70
env:
0 commit comments