From edc6d463354903aa281ce0f3b96f333756b7799a Mon Sep 17 00:00:00 2001 From: Diwakar Gupta <39624018+Diwakar-Gupta@users.noreply.github.com> Date: Fri, 15 Dec 2023 20:32:37 +0530 Subject: [PATCH] Update build_release.yml --- .github/workflows/build_release.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index a61d77f..3f9b1fb 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -19,6 +19,12 @@ jobs: with: node-version: '20' + - name: Install Java 17 + uses: actions/setup-java@v2 + with: + distribution: 'adopt' + java-version: '17' + - name: Install dependencies run: | yarn install @@ -38,7 +44,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.event.inputs.APP_VERSION }} - release_name: ${{ github.event.inputs.APP_VERSION }} ${{ github.event.inputs.VERSION_NAME }} + release_name: ${{ github.event.inputs.APP_VERSION }} draft: false prerelease: false