Merge pull request 'allow changelog to fail' (#6) from dev into main
Reviewed-on: #6
This commit was merged in pull request #6.
This commit is contained in:
@@ -51,6 +51,7 @@ jobs:
|
||||
|
||||
- name: Build Changelog
|
||||
id: build_changelog
|
||||
continue-on-error: true
|
||||
uses: https://github.com/mikepenz/release-changelog-builder-action@v5
|
||||
with:
|
||||
platform: "gitea"
|
||||
@@ -72,7 +73,7 @@ jobs:
|
||||
with:
|
||||
tag_name: v${{ env.VERSION }}
|
||||
release_name: Release ${{ env.VERSION }}
|
||||
body: ${{steps.build_changelog.outputs.changelog}}
|
||||
body: ${{ steps.build_changelog.outcome == 'success' && steps.build_changelog.outputs.changelog || 'No changelog available' }}
|
||||
draft: false
|
||||
prerelease: false
|
||||
make_latest: true
|
||||
|
||||
Reference in New Issue
Block a user