From 623e1ac50fcd09dc1650b4081ef7acb21059960f Mon Sep 17 00:00:00 2001 From: Paul <41385034+paulcoding810@users.noreply.github.com> Date: Mon, 2 Dec 2024 11:11:36 +0700 Subject: [PATCH] Use default change log for release (#3) --- .github/workflows/release.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0fa5f85..091c167 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,20 +46,20 @@ jobs: run: | mv "${{ steps.sign_app.outputs.signedFile }}" "app-release.apk" - - name: Create changelog - id: changelog - uses: requarks/changelog-action@v1 - with: - token: ${{ github.token }} - tag: ${{ github.ref_name }} - includeInvalidCommits: true - excludeTypes: build,chore - writeToFile: false +# - name: Create changelog +# id: changelog +# uses: requarks/changelog-action@v1 +# with: +# token: ${{ github.token }} +# tag: ${{ github.ref_name }} +# includeInvalidCommits: true +# excludeTypes: build,chore +# writeToFile: false - name: Create release uses: softprops/action-gh-release@v2 with: - body: ${{ steps.changelog.outputs.changes }} + body: ChangeLog files: "app-release.apk" fail_on_unmatched_files: true make_latest: true