Skip to content

Commit 297ee2d

Browse files
committed
Adding Automated Changelog
1 parent bb73f75 commit 297ee2d

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/release-flow.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,18 @@ jobs:
1212
steps:
1313
- name: Checkout code
1414
uses: actions/checkout@v3
15+
- name: Changelog
16+
uses: scottbrenner/generate-changelog-action@master
17+
id: Changelog
18+
env:
19+
REPO: ${{ github.repository }}
1520
- name: Create Release
1621
uses: actions/create-release@v1
1722
with:
1823
tag_name: ${{ github.ref }}
1924
release_name: Release ${{ github.ref }}
25+
body: |
26+
${{ steps.Changelog.outputs.changelog }}
2027
2128
Deploy-To-Prod:
2229
runs-on: ubuntu-latest

initial/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ apply plugin: "org.sonatype.gradle.plugins.scan"
5959
apply plugin: "base"
6060

6161
group = 'com.example'
62-
version = "1.6.3-${build_target}"
62+
version = "1.6.4-${build_target}"
6363

6464
sourceCompatibility = "${sourceJdkVersion}"
6565
targetCompatibility = "${targetJdkVersion}"

0 commit comments

Comments
 (0)