Skip to content

Commit c83c398

Browse files
committed
Updated Github release workflow to display the version of the JDK and Maven used during the build
1 parent 5e580ea commit c83c398

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/create-release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,14 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v3
17-
- run: |
17+
- name: Build Image Tool installer
18+
run: |
19+
mvn -version
1820
mvn -B clean package
1921
- id: version
2022
run: echo "::set-output name=number::`echo "${{ github.ref_name }}" | sed 's/release-//'`"
21-
- env:
23+
- name: Create draft release and attach installer zip
24+
env:
2225
GH_TOKEN: ${{ github.token }}
2326
run: |
2427
gh release create ${{ github.ref_name }} \

0 commit comments

Comments
 (0)