From: Marcel van der Veldt Date: Thu, 23 Oct 2025 14:40:49 +0000 (+0200) Subject: Yet another attempt X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=40c4fb15d46001c77abf7eee081092a9990d8574;p=music-assistant-server.git Yet another attempt --- diff --git a/.github/actions/generate-release-notes/action.yml b/.github/actions/generate-release-notes/action.yml index 709d428c..6a40f860 100644 --- a/.github/actions/generate-release-notes/action.yml +++ b/.github/actions/generate-release-notes/action.yml @@ -57,15 +57,11 @@ runs: VERSION: ${{ inputs.version }} PREVIOUS_TAG: ${{ inputs.previous-tag }} BRANCH: ${{ inputs.branch }} + BASE_NOTES: ${{ steps.generate.outputs.release-notes }} + SERVER_CONTRIBUTORS: ${{ steps.generate.outputs.contributors }} run: | - # Get the base release notes - BASE_NOTES="${{ steps.generate.outputs.release-notes }}" - SERVER_CONTRIBUTORS="${{ steps.generate.outputs.contributors }}" - - # Save base notes to file - cat > /tmp/base_notes.md << 'EOF' - ${{ steps.generate.outputs.release-notes }} - EOF + # Save base notes to file from environment variable + echo "$BASE_NOTES" > /tmp/base_notes.md # Create temp files for frontend changes FRONTEND_FILE=$(mktemp)