From 297ee2d07460cb50f5c579fee426d9ce44b3ae19 Mon Sep 17 00:00:00 2001 From: GouthamSekar Date: Sun, 29 May 2022 16:44:03 +0530 Subject: [PATCH] Adding Automated Changelog --- .github/workflows/release-flow.yml | 7 +++++++ initial/build.gradle | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-flow.yml b/.github/workflows/release-flow.yml index 72b5222..f359a71 100644 --- a/.github/workflows/release-flow.yml +++ b/.github/workflows/release-flow.yml @@ -12,11 +12,18 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v3 + - name: Changelog + uses: scottbrenner/generate-changelog-action@master + id: Changelog + env: + REPO: ${{ github.repository }} - name: Create Release uses: actions/create-release@v1 with: tag_name: ${{ github.ref }} release_name: Release ${{ github.ref }} + body: | + ${{ steps.Changelog.outputs.changelog }} Deploy-To-Prod: runs-on: ubuntu-latest diff --git a/initial/build.gradle b/initial/build.gradle index 74ac3d5..8897d26 100644 --- a/initial/build.gradle +++ b/initial/build.gradle @@ -59,7 +59,7 @@ apply plugin: "org.sonatype.gradle.plugins.scan" apply plugin: "base" group = 'com.example' -version = "1.6.3-${build_target}" +version = "1.6.4-${build_target}" sourceCompatibility = "${sourceJdkVersion}" targetCompatibility = "${targetJdkVersion}"