ci: Update GitHub workflow

This commit is contained in:
antonio 2023-04-11 11:23:27 +02:00
parent e5eadb7325
commit c1b632ccb1

View file

@ -71,22 +71,23 @@ jobs:
# name: app-release-signed # name: app-release-signed
# path: ${{steps.sign_aab.outputs.signedReleaseFile}} # path: ${{steps.sign_aab.outputs.signedReleaseFile}}
- name: Build Changelog # - name: Build Changelog
id: changelog # id: changelog
uses: ardalanamini/auto-changelog@v3 # uses: ardalanamini/auto-changelog@v3
with: # with:
mention-authors: false # mention-authors: false
mention-new-contributors: false # mention-new-contributors: false
include-compare: false # include-compare: false
semver: false # semver: false
- name: Create Release - name: Create Release
id: create_release id: create_release
uses: actions/create-release@v1 uses: actions/create-release@v1
with: with:
tag_name: ${{ github.ref }} tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }} release_name: Release v${{ github.ref }}
body: ${{ steps.changelog.outputs.changelog }} body: '> Changelog coming soon'
# body: ${{ steps.changelog.outputs.changelog }}
env: env:
GITHUB_TOKEN: ${{ github.token }} GITHUB_TOKEN: ${{ github.token }}