allow changelog to fail #6

Merged
WorldTeacher merged 1 commits from dev into main 2025-12-06 07:59:07 +00:00

View File

@@ -51,6 +51,7 @@ jobs:
- name: Build Changelog - name: Build Changelog
id: build_changelog id: build_changelog
continue-on-error: true
uses: https://github.com/mikepenz/release-changelog-builder-action@v5 uses: https://github.com/mikepenz/release-changelog-builder-action@v5
with: with:
platform: "gitea" platform: "gitea"
@@ -72,7 +73,7 @@ jobs:
with: with:
tag_name: v${{ env.VERSION }} tag_name: v${{ env.VERSION }}
release_name: Release ${{ 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 draft: false
prerelease: false prerelease: false
make_latest: true make_latest: true