Yet another attempt
authorMarcel van der Veldt <m.vanderveldt@outlook.com>
Thu, 23 Oct 2025 14:40:49 +0000 (16:40 +0200)
committerMarcel van der Veldt <m.vanderveldt@outlook.com>
Thu, 23 Oct 2025 14:40:49 +0000 (16:40 +0200)
.github/actions/generate-release-notes/action.yml

index 709d428cd7562f4ce1a8a8f3f5b3f17de6f71a62..6a40f860c474202b8fbe025dd6c16b76d1808320 100644 (file)
@@ -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)