fix: enforce utf-8 locale in release workflow to support chinese filenames

This commit is contained in:
fujie
2026-01-03 12:42:26 +08:00
parent 40d77121bd
commit 54c90238f7

View File

@@ -145,6 +145,10 @@ jobs:
needs: check-changes
if: needs.check-changes.outputs.has_changes == 'true' || github.event_name == 'workflow_dispatch' || startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
env:
LANG: en_US.UTF-8
LC_ALL: en_US.UTF-8
steps:
- name: Checkout repository