feat(download): enrich error feedback links (#101)

* feat(download): enrich feedback payloads

* fix(ci): stabilize locale and ffmpeg fetch
This commit is contained in:
Nexmoe
2026-01-14 21:50:42 +08:00
committed by GitHub
parent 4a9ee1406b
commit 2d69ce81a4
17 changed files with 373 additions and 9 deletions

View File

@@ -98,6 +98,13 @@ jobs:
arm_bin="ffmpeg-arm/${{ matrix.ffmpeg_inner_path }}"
x86_bin="ffmpeg-x86/${{ matrix.ffmpeg_inner_path }}"
if [[ ! -f "$arm_bin" ]]; then
arm_bin="$(find ffmpeg-arm -type f -name ffmpeg -print -quit)"
fi
if [[ ! -f "$x86_bin" ]]; then
x86_bin="$(find ffmpeg-x86 -type f -name ffmpeg -print -quit)"
fi
if [[ ! -f "$arm_bin" ]]; then
echo "::error::Missing arm64 ffmpeg binary at $arm_bin"
exit 1