From c1b632ccb1a771100ba43e7d0e5d709668a4a69d Mon Sep 17 00:00:00 2001 From: antonio Date: Tue, 11 Apr 2023 11:23:27 +0200 Subject: [PATCH] ci: Update GitHub workflow --- .github/workflows/github_release.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/github_release.yml b/.github/workflows/github_release.yml index dc79d206..02662410 100644 --- a/.github/workflows/github_release.yml +++ b/.github/workflows/github_release.yml @@ -71,22 +71,23 @@ jobs: # name: app-release-signed # path: ${{steps.sign_aab.outputs.signedReleaseFile}} - - name: Build Changelog - id: changelog - uses: ardalanamini/auto-changelog@v3 - with: - mention-authors: false - mention-new-contributors: false - include-compare: false - semver: false +# - name: Build Changelog +# id: changelog +# uses: ardalanamini/auto-changelog@v3 +# with: +# mention-authors: false +# mention-new-contributors: false +# include-compare: false +# semver: false - name: Create Release id: create_release uses: actions/create-release@v1 with: tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} - body: ${{ steps.changelog.outputs.changelog }} + release_name: Release v${{ github.ref }} + body: '> Changelog coming soon' +# body: ${{ steps.changelog.outputs.changelog }} env: GITHUB_TOKEN: ${{ github.token }}