From 0e6f902d16da7e47d66b5b348f314f6f9f202b34 Mon Sep 17 00:00:00 2001 From: fujie Date: Sat, 3 Jan 2026 13:38:59 +0800 Subject: [PATCH] chore: add debug steps and artifact upload to release workflow --- .github/workflows/release.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4d8b743..1478f88 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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'