chore: add debug steps and artifact upload to release workflow

This commit is contained in:
fujie
2026-01-03 13:38:59 +08:00
parent c15c73897f
commit 0e6f902d16

View File

@@ -224,6 +224,17 @@ jobs:
echo "=== Collected Files ==="
find release_plugins -name "*.py" -type f | head -20
- name: Debug Filenames
run: |
python3 -c "import sys; print(f'Filesystem encoding: {sys.getfilesystemencoding()}')"
ls -R release_plugins
- name: Upload Debug Artifacts
uses: actions/upload-artifact@v4
with:
name: debug-plugins
path: release_plugins/
- name: Get commit messages
id: commits
if: github.event_name == 'push'