Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/release-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,9 @@ jobs:
git log --pretty=format:"- %s" $PREV_TAG..$CURRENT_TAG > /tmp/changelog.md
fi

# 使用更安全的方式设置多行输出
{
echo "changelog<<CHANGELOG_EOF"
cat /tmp/changelog.md
echo "CHANGELOG_EOF"
} >> $GITHUB_OUTPUT
echo "changelog<<'EOF'" >> $GITHUB_OUTPUT
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The multi-line output for the changelog step uses a mismatched delimiter: the start marker is written as changelog<<'EOF' while the terminator line is just EOF, so GitHub Actions will not recognize the end of the value and steps.changelog.outputs.changelog may not be set correctly. To fix this, remove the quotes around EOF in the start marker (so the delimiter is EOF in both places) or ensure the terminator line exactly matches the quoted delimiter used in the start marker.

Suggested change
echo "changelog<<'EOF'" >> $GITHUB_OUTPUT
echo "changelog<<EOF" >> $GITHUB_OUTPUT

Copilot uses AI. Check for mistakes.
cat /tmp/changelog.md >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT

# === 构建 APK ===

Expand Down
112 changes: 0 additions & 112 deletions GITHUB_RELEASE_NOTE.md

This file was deleted.

138 changes: 0 additions & 138 deletions RELEASE_NOTES.md

This file was deleted.

Loading