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 d6a74f8 commit 0b1c9bdCopy full SHA for 0b1c9bd
.github/workflows/release.yml
@@ -29,12 +29,15 @@ jobs:
29
uses: actions/setup-java@v3
30
with:
31
java-version: '17'
32
- distribution: 'corretto'
+ distribution: 'temurin'
33
34
- name: Set release version
35
run: |
36
TAG=${{ github.event.release.tag_name }}
37
echo "VERSION=${TAG#v}" >> $GITHUB_ENV
38
+
39
+ - name: Echo version
40
+ run: "echo Version: $VERSION"
41
42
- name: Set project version
43
run: mvn -B versions:set -DnewVersion=$VERSION -DgenerateBackupPoms=false
0 commit comments